Files
security-ai-edge/.gitignore
16337 bcabe65984 chore: 忽略说明文档
- 忽略 *.md、CHANGELOG.md、README.md
- 保留 requirements.txt
2026-01-30 10:14:16 +08:00

47 lines
433 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
dist/
build/
# traefile AI
.trae/
# 日志文件
logs/
*.log
# 模型文件(忽略中间产物)
models/*.onnx
# 环境配置
.env
.env.local
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# 测试覆盖率
htmlcov/
.coverage
.coverage.*
*.coverag
# 说明文档(不随代码仓库分发)
CHANGELOG.md
README.md
*.md
!requirements.txt