| 123456789101112131415161718192021222324252627282930313233 |
- # 忽略 Python 虚拟环境
- venv/
- .venv/
- env/
- # 忽略缓存和编译文件
- **/__pycache__/
- *.py[cod]
- *$py.class
- .pytest_cache/
- .coverage
- htmlcov/
- # 忽略 Docker 和本地配置
- .git/
- .gitignore
- .dockerignore
- Dockerfile
- docker-compose.yml
- .env
- # 忽略视频处理产生的临时文件(重要!)
- scenes_cache/
- *.mp4
- *.jpg
- # 忽略 IDE 配置
- .vscode/
- .idea/
- ai_output/
- ai_upload/
- README.md
|