# =============================================================================
# Version Control
# =============================================================================
.git
.gitignore
.github

# =============================================================================
# Python Artifacts
# =============================================================================
__pycache__
*.py[cod]
*$py.class
.venv/
venv/
env/
*.egg-info/
dist/
build/

# =============================================================================
# Testing
# =============================================================================
tests/
.pytest_cache/
.coverage
htmlcov/
.tox/
.nox/

# =============================================================================
# Documentation
# =============================================================================
*.md
!README.md
docs/
LICENSE

# =============================================================================
# IDE and Editors
# =============================================================================
.idea/
.vscode/
*.swp
*.swo
*~

# =============================================================================
# Local Configuration (copy manually or mount)
# =============================================================================
.env
.env.example
data/config.yml
data/config.example.yml
data/credentials.json
data/token.json

# =============================================================================
# Local Data and Models (mount separately)
# =============================================================================
data/models/
data/voices/
data/cache/
*.gguf

# =============================================================================
# Logs and Temporary
# =============================================================================
*.log
*.tmp
*.temp
.cache/

# =============================================================================
# OS Generated
# =============================================================================
.DS_Store
Thumbs.db

# =============================================================================
# Development Files
# =============================================================================
0ld/
Makefile
docker-compose*.yml
compose*.yml
