From a970c4c9252c2e92fdbd87db4258304007a5db25 Mon Sep 17 00:00:00 2001 From: Keannu Bernasol Date: Mon, 2 Oct 2023 00:58:49 +0800 Subject: [PATCH] Switch debug flag off --- stude/config/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stude/config/settings.py b/stude/config/settings.py index e267627..923f972 100644 --- a/stude/config/settings.py +++ b/stude/config/settings.py @@ -28,7 +28,7 @@ BASE_DIR = Path(__file__).resolve().parent.parent SECRET_KEY = str(os.getenv('SECRET_KEY')) # SECURITY WARNING: don't run with debug turned on in production! -DEBUG = True +DEBUG = False FRONTEND_DEBUG = False ALLOWED_HOSTS = ['*']