From 9809b2339d3b62fa895cb510ce1634d2b22f93a2 Mon Sep 17 00:00:00 2001 From: Galimede Date: Mon, 2 Nov 2020 16:15:18 +0100 Subject: [PATCH] remove psql pwd --- .circleci/config.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 793ec7d..6cc68d9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -35,7 +35,6 @@ jobs: environment: POSTGRES_USER: e2e POSTGRES_DB: psdb - POSTGRES_PWD: password steps: - checkout - restore_cache: @@ -43,7 +42,7 @@ jobs: - run: command: yarn test:e2e environment: - DATABASE_URL: postgres://e2e:password@localhost:5432/psdb + DATABASE_URL: postgres://e2e@localhost:5432/psdb API_PORT: 3000 API_HOST: localhost API_PROTOCOL: http