- Add XTTS v2 configuration to .env.example - Refactor Dockerfile to multi-stage build with CUDA 12.1 support - Update Makefile with Kokoro and XTTS test environment targets - Refactor Piper engine (app/engines/piper.py) to use python module execution - Add comprehensive documentation for Kokoro and XTTS plans - Add helper scripts and patches for build process
39 lines
420 B
Plaintext
39 lines
420 B
Plaintext
# Git / version control
|
|
.git
|
|
.gitignore
|
|
.dockerignore
|
|
|
|
# Virtual environment
|
|
.venv
|
|
venv/
|
|
.env/
|
|
|
|
# IDE / Editor folders
|
|
.idea/
|
|
.vscode/
|
|
|
|
# Python cache
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
|
|
# Build artifacts
|
|
build/
|
|
dist/
|
|
*.egg-info
|
|
|
|
# Test artifacts
|
|
.pytest_cache/
|
|
.coverage
|
|
|
|
# Docker files
|
|
Dockerfile
|
|
docker-compose.yml
|
|
|
|
# Local environment settings
|
|
.env
|
|
|
|
# Exclude unused large models
|
|
app/models/chattts/
|
|
app/models/f5-tts-voices/
|