update the docker settings

This commit is contained in:
Andreas Zweili 2019-08-11 18:37:56 +02:00
parent 521aaef946
commit a38f17141a
1 changed files with 2 additions and 2 deletions

View File

@ -5,10 +5,10 @@ ALLOWED_HOSTS = [
'127.0.0.1',
]
DEBUG = os.environ.get('DEBUG')
DEBUG = True
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = os.environ.get('SECRET_KEY')
SECRET_KEY = os.getenv('SECRET_KEY')
DATABASES = {
'default': {