From ab3ae382e9159b2f4ea21f526215c923f0b44551 Mon Sep 17 00:00:00 2001 From: zyc <1439655764@qq.com> Date: Thu, 26 Feb 2026 10:32:19 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=AD=A3=20log=5Fcenter=5Fweb?= =?UTF-8?q?=20=E9=A1=B9=E7=9B=AE=E6=B3=A8=E5=86=8C=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - local_path 改为仓库根目录(web 是子目录,不是独立 Git 仓库) - repo_url 改为正确的 log-center.git(之前误写为 qy_gitlab.git) Co-Authored-By: Claude Opus 4.6 --- app/main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/main.py b/app/main.py index bd44ef6..c3dd92a 100644 --- a/app/main.py +++ b/app/main.py @@ -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 管理端", }, ]