aboutsummaryrefslogtreecommitdiff
path: root/instance
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-29 00:07:01 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-29 00:07:01 +0100
commit216156880237251ddd10df9a2b82c68de7696d25 (patch)
tree8d7b8808ef915f2a9ce9b4c1a14f5a63f6b7feb9 /instance
parentdocker now exposes port number 5532 for postgres (diff)
downloadnewspipe-216156880237251ddd10df9a2b82c68de7696d25.tar.gz
newspipe-216156880237251ddd10df9a2b82c68de7696d25.tar.bz2
newspipe-216156880237251ddd10df9a2b82c68de7696d25.zip
DEBUG set to False by default.
Diffstat (limited to 'instance')
-rw-r--r--instance/config.py (renamed from instance/production.py)2
1 files changed, 1 insertions, 1 deletions
diff --git a/instance/production.py b/instance/config.py
index 90f27c1c..8a3fdb6b 100644
--- a/instance/production.py
+++ b/instance/config.py
@@ -7,7 +7,7 @@ import os
# Webserver
HOST = "0.0.0.0"
PORT = 5000
-DEBUG = False
+DEBUG = True
API_ROOT = "/api/v2.0"
CSRF_ENABLED = True
bgstack15