From 420481f18a6ee015dc620031a93552e1a94ed446 Mon Sep 17 00:00:00 2001 From: Sonny Date: Fri, 20 Mar 2020 21:58:22 +0100 Subject: [PATCH] Squashed commit of the following: commit f1db9b9dc1026760a43028e548572db4e639976e Author: Sonny Date: Mon Mar 16 20:47:15 2020 +0100 Add port setting --- src/newsreader/conf/production.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/newsreader/conf/production.py b/src/newsreader/conf/production.py index 3b6be2a..ce39853 100644 --- a/src/newsreader/conf/production.py +++ b/src/newsreader/conf/production.py @@ -17,6 +17,7 @@ DATABASES = { "default": { "ENGINE": "django.db.backends.postgresql", "HOST": os.environ["POSTGRES_HOST"], + "PORT": os.environ["POSTGRES_PORT"], "NAME": os.environ["POSTGRES_NAME"], "USER": os.environ["POSTGRES_USER"], "PASSWORD": os.environ["POSTGRES_PASSWORD"],