From 7e913d9df5ccf6c3062279b7c874ac25dbf1fdd3 Mon Sep 17 00:00:00 2001 From: Pierre Fontaine Date: Mon, 18 Jan 2021 10:34:52 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20Add=20circleci=20role.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 55c05e2..baaa288 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,10 +6,10 @@ jobs: - image: circleci/postgres:9.6.5 environment: POSTGRES_DB: example - POSTGRES_USER: postgres + POSTGRES_USER: circleci POSTGRES_PASSWORD: somePwd POSTGRES_PORT: 5432 - DATABASE_URL: postgresql://postgresql:somePwd@localhost:5432/example + DATABASE_URL: postgresql://circleci:somePwd@localhost:5432/example working_directory: ~/repo steps: - checkout