Merge pull request #228 from elnappo/secretkey

set SECRET_KEY in development configuration
This commit is contained in:
TW 2015-12-28 11:11:00 +01:00
commit 8ed2efc2aa

View File

@ -7,6 +7,7 @@ from .base import *
DEBUG = True
TEMPLATE_DEBUG = DEBUG
SECRET_KEY = 'UNSECURE_BECAUSE_WE_ARE_DEVELOPING'
WE_HAVE_TLS = False # True if you run a https site also, suggest that site to users if they work on the http site.
CSRF_COOKIE_SECURE = WE_HAVE_TLS
SESSION_COOKIE_SECURE = WE_HAVE_TLS