chore: 添加 .gitignore,从版本控制中移除 logs、vector_store、测试结果、生成图片

Made-with: Cursor
This commit is contained in:
2026-02-26 20:02:16 +08:00
parent c7f6a0da17
commit fa5e5e7c23
153 changed files with 34 additions and 3682 deletions

34
.gitignore vendored Normal file
View File

@@ -0,0 +1,34 @@
# ============ 日志 ============
logs/
# ============ 向量库RAG 检索用) ============
**/vector_store/
vector_store/
# ============ 测试脚本的测试结果 ============
tools/test_validate/validation/
# ============ 生成的图片 ============
backend_service/generated_visualizations/
tools/test_validate/validation/**/*.png
tools/test_validate/validation/**/*.jpg
# ============ Python ============
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
.venv/
env/
.env/
# ============ 其他常见忽略 ============
*.log
.DS_Store
.idea/
.vscode/
*.swp
*.swo
*~