From 5686e54386a46279322f6a8183183bc77da5fdbe Mon Sep 17 00:00:00 2001 From: Ben Sturmfels Date: Thu, 26 Oct 2023 13:19:11 +1100 Subject: [PATCH] Provide a default for DEBUG This avoid having to specify it in the production environment config at all - shorter config. --- conservancy/settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/conservancy/settings.py b/conservancy/settings.py index 847a4852..b8e847ad 100644 --- a/conservancy/settings.py +++ b/conservancy/settings.py @@ -19,6 +19,8 @@ from pathlib import Path +DEBUG = False + from .djangocommonsettings import * SITE_ID = 2