Closed Dunedan closed 9 years ago
To quote from Djangos documentation:
The secret key must be a large random value and it must be kept secret. https://docs.djangoproject.com/en/1.7/howto/deployment/checklist/#secret-key
This commit achieves that by generating a file containing a random string when running the first time and by using this string as SECRET_KEY from then on.
SECRET_KEY
To quote from Djangos documentation:
This commit achieves that by generating a file containing a random string when running the first time and by using this string as
SECRET_KEY
from then on.