fix: changed default debug value
This commit is contained in:
@@ -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(
|
||||
","
|
||||
|
||||
Reference in New Issue
Block a user