5e95d3af2f
Co-authored-by: Cursor <cursoragent@cursor.com>
47 lines
473 B
Plaintext
47 lines
473 B
Plaintext
# Python 虚拟环境
|
|
venv/
|
|
.venv/
|
|
env/
|
|
|
|
# 模型权重与音色文件(体积大,不入库)
|
|
*.pt
|
|
*.pth
|
|
*.onnx
|
|
*.bin
|
|
*.safetensors
|
|
|
|
# 音频产物
|
|
*.wav
|
|
*.mp3
|
|
*.flac
|
|
*.ogg
|
|
*.m4a
|
|
|
|
# 日志
|
|
*.log
|
|
|
|
# 运行时目录
|
|
uploads/
|
|
outputs/
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.Python
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# 系统文件
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# 环境变量与密钥
|
|
.env
|
|
.env.*
|
|
|
|
# Gradio 临时
|
|
gradio_cached_examples/
|