diff options
Diffstat (limited to 'etc/default_config.py')
-rw-r--r-- | etc/default_config.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/etc/default_config.py b/etc/default_config.py new file mode 100644 index 0000000..80f9d59 --- /dev/null +++ b/etc/default_config.py @@ -0,0 +1,9 @@ +""" +The default configuration file. The values here should be overridden in the +actual configuration file used for the production and staging systems. +""" + +import os + +LOG_LEVEL = os.getenv("LOG_LEVEL", "WARNING") +SECRET_KEY = b"<Please! Please! Please! Change This!>" |