From 0bca6569530d100291f176d04df8af9700705231 Mon Sep 17 00:00:00 2001 From: Pjotr Prins Date: Mon, 27 Apr 2020 17:12:54 -0500 Subject: settings: force SERVER_PORT to align with environment variable --- etc/default_settings.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'etc/default_settings.py') diff --git a/etc/default_settings.py b/etc/default_settings.py index 053b906d..176ee59c 100644 --- a/etc/default_settings.py +++ b/etc/default_settings.py @@ -40,7 +40,13 @@ SECURITY_RECOVERABLE = True SECURITY_EMAIL_SENDER = "no-reply@genenetwork.org" SECURITY_POST_LOGIN_VIEW = "/thank_you" -SERVER_PORT = 5003 # running on localhost +# ---- SERVER_PORT needs an override before firing up the server +SERVER_PORT = os.environ['SERVER_PORT'] +if isinstance(SERVER_PORT, str): + SERVER_PORT = int(SERVER_PORT) # don't do this for other settings! +else: + SERVER_PORT = 5003 + SECRET_HMAC_CODE = '\x08\xdf\xfa\x93N\x80\xd9\\H@\\\x9f`\x98d^\xb4a;\xc6OM\x946a\xbc\xfc\x80:*\xebc' GITHUB_CLIENT_ID = "UNKNOWN" -- cgit v1.2.3