Files
recommend/.dockerignore
赵杰 Jie Zhao (雄狮汽车科技) 2ab6aafc6f feat: add Docker support for containerized deployment
2025-11-02 23:55:54 +08:00

65 lines
583 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
dist/
build/
*.egg
# 虚拟环境
venv/
env/
ENV/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# 日志文件
*.log
logs/*.log
# 数据库文件会通过volume挂载
data/*.db
data/*.pkl
# Git
.git/
.gitignore
# Docker
Dockerfile
docker-compose.yml
.dockerignore
# 文档
*.md
!README.md
# 测试文件
test_*.py
*_test.py
# 临时文件
*.tmp
*.bak
.DS_Store
Thumbs.db
# 环境配置(敏感信息)
.env
.env.local
# 模型文件会通过volume挂载
models/*.pkl
# PDF和其他大文件
*.pdf