fix: 修正 log_center_web 项目注册信息
Some checks failed
Build and Deploy Log Center / build-and-deploy (push) Failing after 1m6s

- local_path 改为仓库根目录(web 是子目录,不是独立 Git 仓库)
- repo_url 改为正确的 log-center.git(之前误写为 qy_gitlab.git)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
zyc 2026-02-26 10:32:19 +08:00
parent 46c52a795f
commit ab3ae382e9

View File

@ -37,15 +37,15 @@ async def _register_self_projects():
{
"project_id": "log_center_api",
"name": "Log Center API",
"repo_url": "https://gitea.airlabs.art/zyc/qy_gitlab.git",
"repo_url": "https://gitea.airlabs.art/zyc/log-center.git",
"local_path": "/Users/maidong/Desktop/zyc/qy_gitlab/log_center",
"description": "日志中台 FastAPI 后端服务",
},
{
"project_id": "log_center_web",
"name": "Log Center Web",
"repo_url": "https://gitea.airlabs.art/zyc/qy_gitlab.git",
"local_path": "/Users/maidong/Desktop/zyc/qy_gitlab/log_center/web",
"repo_url": "https://gitea.airlabs.art/zyc/log-center.git",
"local_path": "/Users/maidong/Desktop/zyc/qy_gitlab/log_center",
"description": "日志中台 React 管理端",
},
]