From dfb3ccf1cab1a9ba2af158ab7588040dd72b560b Mon Sep 17 00:00:00 2001 From: Aaron Gutierrez Date: Tue, 7 Feb 2017 22:31:26 -0500 Subject: [PATCH] add ALLOWED_HOSTS --- fincom/settings.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/fincom/settings.py b/fincom/settings.py index 0e14d2f..7b20217 100644 --- a/fincom/settings.py +++ b/fincom/settings.py @@ -25,7 +25,11 @@ SECRET_KEY = os.environ['SECRET_KEY'] # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True -ALLOWED_HOSTS = [] +ALLOWED_HOSTS = [ + 'localhost', + 'dtd-fincom.herokuapp.com', + '*.delt.space', +] AUTHENTICATION_BACKENDS = [ 'social_core.backends.google.GoogleOAuth2',