From c35ca979c515972b519bc2ecfdffc1e2fac550c1 Mon Sep 17 00:00:00 2001 From: Santiago Lamora Date: Mon, 22 Feb 2021 14:49:43 +0100 Subject: [PATCH] Fix postgres settings. --- orchestra/conf/project_template/project_name/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/orchestra/conf/project_template/project_name/settings.py b/orchestra/conf/project_template/project_name/settings.py index bd9a4708..734e4210 100644 --- a/orchestra/conf/project_template/project_name/settings.py +++ b/orchestra/conf/project_template/project_name/settings.py @@ -120,8 +120,8 @@ DATABASES = { 'NAME': 'test_myapp', 'USER': 'testuser', 'PASSWORD': 's3cretPass', - 'HOST': 'postgres', - 'PORT': 5432, + 'HOST': 'localhost', + 'PORT': '5432', 'CONN_MAX_AGE': 60*10 # Enable persistent connections } }