Browse Source

Update config.yml

main
Julien Dudek 6 years ago
parent
commit
0eb57c1a60
  1. 11
      .circleci/config.yml

11
.circleci/config.yml

@ -52,10 +52,11 @@ jobs:
- ./node_modules
db:
docker:
- image: "circleci/postgres:alpine"
- image: "circleci/postgres:9.6.2-alpine"
environment:
PG_USER: circleci-demo-go
PG_DB: circle_test
PG_USER: julien_dudek
PG_DB: testdb
PG_PASSWORD: unpass
steps:
- checkout
@ -76,8 +77,8 @@ jobs:
- run:
command: yarn test:e2e
environment:
DATABASE_URL: postgres://$PG_USER@localhost:5432/$PG_DB
JWT_SECRET: yeet
DATABASE_URL: postgres://$PG_USER:$PG_PASSWORD@localhost:5432/$PG_DB
JWT_SECRET: m1iii
API_PORT: 3000
API_HOST: localhost
API_PROTOCOL: http

Loading…
Cancel
Save