From 484e6ce07cf0b480c4988b92cc1eebef41d40f84 Mon Sep 17 00:00:00 2001 From: Francois Lannoy Date: Mon, 2 Nov 2020 16:06:19 +0100 Subject: [PATCH] update db url --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index fb6a7c0..e6b0ec5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -54,9 +54,9 @@ jobs: docker: - image: circleci/postgres:alpine environment: - PG_USER: circleci-demo-go - PG_DB: circle_test - PG_PWD: toto + POSTGRES_USER: circleci-demo-go + POSTGRES_DB: circle_test + POSTGRES_PWD: toto steps: - checkout - restore_cache: @@ -76,7 +76,7 @@ jobs: - run: command: yarn test:e2e environment: - DATABASE_URL: postgres://${PG_USER}:${PG_PWD}@localhost:5432/${PG_DB} + DATABASE_URL: postgres://circleci-demo-go:toto@localhost:5432/circle_test JWT_SECRET: yeet API_PORT: 3000 API_HOST: localhost