From ec279262a79af61593dfd0407248ff4c5f53954c Mon Sep 17 00:00:00 2001 From: wh Date: Fri, 10 Apr 2026 16:46:02 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20Phase=208=20polish=20=E2=80=94=20gitig?= =?UTF-8?q?nore,=20full=20test=20verification,=20Swagger=20and=20dependenc?= =?UTF-8?q?y=20check?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 62 ++++++++++++++++++++++++++---------------------------- 1 file changed, 30 insertions(+), 32 deletions(-) diff --git a/.gitignore b/.gitignore index 0f47a07..70eec20 100644 --- a/.gitignore +++ b/.gitignore @@ -1,32 +1,30 @@ -# ========================================== -# 1. Maven/Java 构建产物 (一键忽略整个目录) -# ========================================== -target/ -*.class -*.jar -*.war -*.ear - -# ========================================== -# 2. IDE 配置文件 -# ========================================== -.idea/ -.vscode/ -*.iml -*.ipr -*.iws - -# ========================================== -# 3. 项目特定工具目录 (根据你的文件列表) -# ========================================== -# 忽略 Specifiy 工具生成的所有配置和脚本 -.specify/ - -# 忽略 Claude 本地设置和技能文件 -.claude/ - -# ========================================== -# 4. 操作系统文件 -# ========================================== -.DS_Store -Thumbs.db \ No newline at end of file +# Python +__pycache__/ +*.pyc +*.pyo +*.pyd +.Python +*.egg-info/ +dist/ +build/ + +# Environment +.env +*.env + +# Testing +.pytest_cache/ +.coverage +htmlcov/ + +# Temp files (video processing) +tmp/ +*.tmp + +# IDE +.vscode/ +.idea/ + +# OS +.DS_Store +Thumbs.db