tts-dgx-spark-faster-qwen3-tts/.gitignore
mARTin-B78 6198f15f64 v6.8: Untrack generated VoiceDesign registry, add presets seed
config/voicedesign_voices.json is generated on every container start from the
voice library's designed voices, so it carries the user's own character design
prompts and made the working tree permanently dirty. It is now gitignored.

The 8 bundled vd_* presets were only ever stored in that file, so untracking it
alone would leave a fresh clone with no built-in voices at all. They now live in
config/voicedesign_voices.presets.json, which is tracked:

- generate_voices.py seeds the registry from the presets file when no vd_*
  entries survive in the generated one (i.e. on a fresh checkout).
- run_voicedesign_server.py starts from the presets file when the registry does
  not exist yet, instead of crashing on the missing path. Hot-reload picks up
  the real registry as soon as the voice-clone container writes it.

Also documents the v6.8 engine fixes from 9836261 in the README changelog, which
that commit did not touch.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-07-29 16:06:05 +02:00

58 lines
1.1 KiB
Plaintext

# Upstream faster-qwen3-tts repo (tracked separately)
build/
# Personal voice recordings & references
config/speakers/
# Private speakers — entire subtree
config/speakers/privat/
# Speaker directory extras
config/speakers/backup.zip
config/speakers/Link to speakers
# VS Code workspace file
config/faster-qwen3-tts.code-workspace
# Generated at container startup from speakers/
config/voices.json
config/voices.json*
# Generated at container startup from the voice library's designed voices.
# Contains the user's own character design prompts, so it stays local; the
# bundled vd_* presets live in voicedesign_voices.presets.json, which IS
# tracked and seeds this file on a fresh checkout.
config/voicedesign_voices.json
# Converted private audio (M4A → WAV, generated at runtime)
config/converted/
# Seed finder pre-generated WAV samples (batch output, not source files)
config/seed_samples/
# Editor backup files
*.py~
*.yml~
*.yaml~
*~
# Claude Code settings
.claude/
config/.claude/
# Random generated files in project root
json
os
*.txt
# Python
__pycache__/
*.pyc
*.pyo
.venv/
venv/
# Environment files
.env
.env.*