aboutsummaryrefslogtreecommitdiff
path: root/src/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/conf.py')
-rw-r--r--src/conf.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/conf.py b/src/conf.py
index 6299f601..693a66ee 100644
--- a/src/conf.py
+++ b/src/conf.py
@@ -73,6 +73,7 @@ else:
WEBSERVER_HOST = config.get('webserver', 'host')
WEBSERVER_PORT = config.getint('webserver', 'port')
WEBSERVER_SECRET = config.get('webserver', 'secret_key')
+WEBSERVER_DEBUG = config.get('webserver', 'debug')
CDN_ADDRESS = config.get('cdn', 'cdn_address')
bgstack15