add ALLOWED_HOSTS

This commit is contained in:
2017-02-07 22:31:26 -05:00
parent 537795bf16
commit dfb3ccf1ca

View File

@@ -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',