46 lines
541 B
Plaintext
46 lines
541 B
Plaintext
# 忽略依赖和环境
|
|
venv/
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# 忽略环境变量文件
|
|
.env
|
|
|
|
# 忽略IDE文件
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# 忽略系统文件
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# 忽略日志文件
|
|
*.log
|
|
logs/
|
|
|
|
# 忽略上传的文件和数据库
|
|
uploads/
|
|
chroma_db/
|
|
|
|
# 忽略临时文件
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# 忽略测试覆盖率报告
|
|
htmlcov/
|
|
.coverage
|
|
.pytest_cache/
|
|
|
|
# 测试报告文件
|
|
*_test_report.md
|
|
concurrent_test_report.md
|
|
performance_metrics_*.json
|
|
performance_chart.png |