diff options
| author | shihaoyue <[email protected]> | 2024-09-06 22:55:06 +0800 |
|---|---|---|
| committer | shihaoyue <[email protected]> | 2024-09-06 22:55:06 +0800 |
| commit | bcf81fdb3376a0ae3be65b55aa4d96ef355f47f1 (patch) | |
| tree | 03789bbc2298535383e61d574c162639e0be6a48 | |
| parent | 71c655a700867beef492fba5089515b8daa4e6e7 (diff) | |
update database table
| -rw-r--r-- | server/settings.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/server/settings.py b/server/settings.py index 039a4c2..3142533 100644 --- a/server/settings.py +++ b/server/settings.py @@ -1,9 +1,9 @@ import datetime -DEBUG = True +DEBUG = False # 是否以运行效果模拟状态运行,用于控制和代理通信的处理 RUN_DEV = True -SERVER_PORT = 12526 +SERVER_PORT = 12530 START_DAY = datetime.date.today() # 数据库配置 @@ -21,3 +21,4 @@ MYSQL_TAB_TASK = "TASK" MYSQL_TAB_POLICY = "POLICY" MYSQL_TAB_TASKPOLICY = "TASK_POLICY" MYSQL_TAB_TASK_LOG = "TASK_LOG" +MYSQL_TAB_TARGET_STATUS = "TARGET_STATUS" |
