From aa5727374247247e9d333a2f7ac089e6bd46add9 Mon Sep 17 00:00:00 2001 From: Galimede Date: Tue, 5 Jan 2021 13:00:37 +0100 Subject: [PATCH] :wrench: Add front prod url env var --- conduit/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/conduit/settings.py b/conduit/settings.py index b838a6d..c9c6832 100644 --- a/conduit/settings.py +++ b/conduit/settings.py @@ -25,6 +25,7 @@ class Config(object): 'http://localhost:4200', 'http://0.0.0.0:4000', 'http://localhost:4000', + os.environ.get('PROD_URL') ] JWT_HEADER_TYPE = 'Token'