🐛 修正默认调试模式值
Some checks are pending
Docker Publish / build-and-push (push) Waiting to run

- 将默认 DEBUG 值设置为 False,以避免意外的调试模式激活
This commit is contained in:
Cp0204 2024-12-04 16:21:27 +08:00
parent c588312f81
commit 47d05dc37b

View File

@ -42,7 +42,7 @@ def get_app_ver():
PYTHON_PATH = "python3" if os.path.exists("/usr/bin/python3") else "python"
SCRIPT_PATH = os.environ.get("SCRIPT_PATH", "./quark_auto_save.py")
CONFIG_PATH = os.environ.get("CONFIG_PATH", "./config/quark_config.json")
DEBUG = os.environ.get("DEBUG", True)
DEBUG = os.environ.get("DEBUG", False)
task_plugins_config = {}