fix: changed default debug value

This commit is contained in:
2025-01-25 08:47:58 +01:00
parent 72a12dc0bf
commit 7e10d84de9
2 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ if os.path.exists(env_file):
environ.Env.read_env(env_file)
SECRET_KEY = env.str("SECRET_KEY", "this-is-the-default-secret-key")
DEBUG = env.bool("DEBUG", True)
DEBUG = env.bool("DEBUG", False)
CORS_ORIGIN_WHITELIST = env.str("CORS_ORIGIN_WHITELIST", "http://localhost:8000").split(
","