aboutsummaryrefslogtreecommitdiff
path: root/etc/default_config.py
blob: 80f9d59365a8182ad859b7b596d5d4ce7a979032 (plain)
1
2
3
4
5
6
7
8
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!>"