Browse Source

added pwd

main
Francois Lannoy 6 years ago
parent
commit
673b358707
  1. 6
      .circleci/config.yml

6
.circleci/config.yml

@ -55,8 +55,8 @@ jobs:
- image: circleci/postgres:alpine - image: circleci/postgres:alpine
environment: environment:
PG_USER: circleci-demo-go PG_USER: circleci-demo-go
PG_DB: circle_test
PG_DB: circle_test
PG_PWD: toto
steps: steps:
- checkout - checkout
- restore_cache: - restore_cache:
@ -76,7 +76,7 @@ jobs:
- run: - run:
command: yarn test:e2e command: yarn test:e2e
environment: environment:
DATABASE_URL: postgres://${PG_USER}@localhost:5432/${PG_DB}
DATABASE_URL: postgres://${PG_USER}:${PG_PWD}@localhost:5432/${PG_DB}
JWT_SECRET: yeet JWT_SECRET: yeet
API_PORT: 3000 API_PORT: 3000
API_HOST: localhost API_HOST: localhost

Loading…
Cancel
Save