From 59644d79cab9477e18d487bcc6d400408844e7c3 Mon Sep 17 00:00:00 2001 From: Galimede Date: Tue, 5 Jan 2021 15:50:08 +0100 Subject: [PATCH] :wrench: Get rid of $ from port as it was an error --- conduit/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conduit/settings.py b/conduit/settings.py index 25ea008..c851eef 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('FRONT_PROD_URL', ''), ] JWT_HEADER_TYPE = 'Token'