diff options
author | Hermann Schwärzler <hermann.schwaerzler@freirad.at> | 2017-06-19 20:17:03 (GMT) |
---|---|---|
committer | Hermann Schwärzler <hermann.schwaerzler@freirad.at> | 2017-06-19 20:17:03 (GMT) |
commit | e38c765036a18001b33b73281f34950b6785b5f5 (patch) | |
tree | 565624c18227e53910a0289eafde475712110197 | |
parent | fba38afc37acb2ae88e97ffc891f5e854b36b9b7 (diff) |
local_settings.py is a better place to change settings than editing settings.py
-rw-r--r-- | README.rst | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -36,9 +36,11 @@ Setting up the database By default the project is set up to run on a SQLite database. -First edit pv/settings.py and change the line - SECRET_KEY = '' -such that there is a value for SECRET_KEY. +Create a file pv/local_settings.py and add at least the line + + SECRET_KEY = 'secret key' + +(obviously replacing "secret key" with a key of you choice). Then run:: |