From 185839c6fa2cc6fb06d6f53e111cc25b609545aa Mon Sep 17 00:00:00 2001 From: Pierre Fontaine Date: Mon, 18 Jan 2021 10:32:05 +0100 Subject: [PATCH] :green_heart: Change database name. --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 04b0f68..55c05e2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,11 +5,11 @@ jobs: - image: circleci/python:3.9.1 - image: circleci/postgres:9.6.5 environment: - POSTGRES_DB: psqluer - POSTGRES_USER: circleci + POSTGRES_DB: example + POSTGRES_USER: postgres POSTGRES_PASSWORD: somePwd POSTGRES_PORT: 5432 - DATABASE_URL: postgresql://postgresql:somePwd@localhost:5432/psqluer + DATABASE_URL: postgresql://postgresql:somePwd@localhost:5432/example working_directory: ~/repo steps: - checkout