Add {{cookiecutter.secret_key}} context variable

This commit is contained in:
Daniel Greenfeld 2013-08-24 13:30:28 +02:00
parent 05feb62028
commit f09afdea74

View File

@ -30,7 +30,7 @@ TEMPLATE_DEBUG = DEBUG
########## SECRET CONFIGURATION
# See: https://docs.djangoproject.com/en/dev/ref/settings/#secret-key
# Note: This key only used for development and testing.
SECRET_KEY = "CHANGE THIS!!!"
SECRET_KEY = "{{cookiecutter.secret_key}}"
########## END SECRET CONFIGURATION