From f459ecf72cfa8575da5785f66c55dce568c416b7 Mon Sep 17 00:00:00 2001 From: foefl Date: Thu, 28 May 2026 11:00:10 +0200 Subject: [PATCH] fix ENV variable --- src/wce_crm/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wce_crm/constants.py b/src/wce_crm/constants.py index 8df5466..e555c32 100644 --- a/src/wce_crm/constants.py +++ b/src/wce_crm/constants.py @@ -17,7 +17,7 @@ assert BASE_PATH class Config: - DEVELOPMENT_STATE: bool = bool(os.getenv("DOPT_DEVELOPMENT", "0")) + DEVELOPMENT_STATE: bool = bool(os.getenv("DOPT_DEVELOPMENT", None)) DB_PATH_CRM: Path = BASE_PATH / os.getenv("DOPT_DB_CRM", "data/db/wce_crm.db") DB_PATH_MAIN: Path = BASE_PATH / os.getenv( "DOPT_DB_MAIN", "data/db/wce_grunderfassung.db"