From 3d980ef7adaad42e72d72fe09c98ae02b093c5fa Mon Sep 17 00:00:00 2001 From: Galimede Date: Tue, 5 Jan 2021 15:42:42 +0100 Subject: [PATCH] :wrench: change int to string from conf --- conduit/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conduit/settings.py b/conduit/settings.py index 60175ff..420b20b 100644 --- a/conduit/settings.py +++ b/conduit/settings.py @@ -25,8 +25,8 @@ class Config(object): 'http://localhost:4200', 'http://0.0.0.0:4000', 'http://localhost:4000', - 'http://0.0.0.0:' + os.environ.get('$PORT', 8080), - 'https://0.0.0.0:' + os.environ.get('$PORT', 8080), + 'http://0.0.0.0:' + os.environ.get('$PORT', '8080'), + 'https://0.0.0.0:' + os.environ.get('$PORT', '8080'), os.environ.get('$BACK_PROD_URL'), os.environ.get('FRONT_PROD_URL'), ]