fill secret key

This commit is contained in:
Linmao Song 2018-01-26 16:38:45 +00:00
parent f6a634469c
commit f03f5181e9

View file

@ -37,9 +37,6 @@ DEBUG = False
TIME_ZONE = 'UTC'
SITE_ID = 1
# Make this unique, and don't share it with anybody.
SECRET_KEY = ''
ALLOWED_HOSTS = (
'dpaste.de',
'www.dpaste.de',
@ -48,6 +45,7 @@ ALLOWED_HOSTS = (
'127.0.0.1',
)
# Make this unique, and don't share it with anybody.
SECRET_KEY = 'CHANGE_ME'
#==============================================================================
@ -114,8 +112,8 @@ TEMPLATES = [
]
INSTALLED_APPS = (
'django.contrib.staticfiles',
'django.contrib.sessions',
'django.contrib.staticfiles',
'dpaste',
)