fix(app): rename DEMO_MODE variable to DEMO for simplicity

This commit is contained in:
Herculino Trotta
2025-03-31 02:45:09 -03:00
parent 26b218ae51
commit f74946cba7

View File

@@ -397,4 +397,4 @@ PWA_SERVICE_WORKER_PATH = BASE_DIR / "templates" / "pwa" / "serviceworker.js"
ENABLE_SOFT_DELETE = os.getenv("ENABLE_SOFT_DELETE", "false").lower() == "true"
KEEP_DELETED_TRANSACTIONS_FOR = int(os.getenv("KEEP_DELETED_ENTRIES_FOR", "365"))
APP_VERSION = os.getenv("APP_VERSION", "unknown")
DEMO = os.getenv("DEMO_MODE", "false").lower() == "true"
DEMO = os.getenv("DEMO", "false").lower() == "true"