From 4847a8979a5d9fdce6d9309f9e4621a81e2d2aa9 Mon Sep 17 00:00:00 2001 From: Lauren Barker Date: Thu, 9 Nov 2017 16:38:11 -0500 Subject: [PATCH] Make local port the default for server --- project/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/settings.py b/project/settings.py index 5d35797c7..790359e4c 100644 --- a/project/settings.py +++ b/project/settings.py @@ -202,7 +202,7 @@ def split(string, delim): 'NAME': os.environ.get('DATABASE_NAME', 'share'), 'USER': os.environ.get('DATABASE_USER', 'postgres'), 'HOST': os.environ.get('DATABASE_HOST', 'localhost'), - 'PORT': os.environ.get('DATABASE_PORT', '5432'), + 'PORT': os.environ.get('DATABASE_PORT', '35432'), 'PASSWORD': os.environ.get('DATABASE_PASSWORD', None), 'CONN_MAX_AGE': int(os.environ.get('CONN_MAX_AGE', 0 if DEBUG else 60)), 'TEST': {'SERIALIZE': False},