From d08a15ba31f5929f295df2732967a77dc97b8bad Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Fri, 13 Oct 2017 13:51:06 +0200 Subject: [PATCH] apparently django default settings are wrong --- conf/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/settings.py b/conf/settings.py index 43d08c1..d053616 100644 --- a/conf/settings.py +++ b/conf/settings.py @@ -46,9 +46,9 @@ DATABASES = { # Database password 'PASSWORD': '__DB_PWD__', # Set to empty string for localhost - 'HOST': '', + 'HOST': 'localhost', # Set to empty string for default - 'PORT': '', + 'PORT': '5432', } }