From e726aa1f137004d9c45bbc7cd2e3dda45d92c3db Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Sun, 29 Mar 2020 00:18:00 +0100 Subject: set DEBUG to True also when SQLite is used. --- instance/sqlite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'instance') diff --git a/instance/sqlite.py b/instance/sqlite.py index 0407ca1b..18b906dd 100644 --- a/instance/sqlite.py +++ b/instance/sqlite.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 -- cgit