chore: 添加 .gitignore,从版本控制中移除 logs、vector_store、测试结果、生成图片
Made-with: Cursor
This commit is contained in:
34
.gitignore
vendored
Normal file
34
.gitignore
vendored
Normal 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
|
||||
*~
|
||||
Reference in New Issue
Block a user