39 lines
456 B
Text
39 lines
456 B
Text
# Virtual environment
|
|
venv/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Environment variables (contains secrets)
|
|
backend/.env
|
|
|
|
# Piper voice models (large binary files)
|
|
backend/voices/*.onnx
|
|
backend/voices/*.onnx.json
|
|
|
|
# Whisper cached models
|
|
backend/whisper_models/
|
|
|
|
# OS files
|
|
Thumbs.db
|
|
Desktop.ini
|
|
.DS_Store
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# TTS temp files
|
|
*.wav
|
|
*.mp3
|
|
|
|
# Test files
|
|
backend/test_tts.wav
|
|
backend/test_setup.py
|