Files
voicebox/.gitignore
T
Jamie Pine 37b7110e52 test: Playwright E2E with real backend + fake TTS engine
e2e/ drives the web build (vite preview) against a per-worker uvicorn:
each Playwright worker boots its own backend on its own port with a
temp cwd, so SQLite and audio files are fully isolated and parallel-
safe. The page fixture seeds the persisted voicebox-server store with
the worker's URL before any script runs.

VOICEBOX_FAKE_TTS=1 short-circuits get_tts_backend_for_engine to a
backend that synthesizes a sine tone sized to the text — the real task
queue, SSE progress, history rows, and audio serving all run, only
inference is fake. backend/requirements-ci.txt is the slim dependency
set validated to boot the app on a CPU-only runner.

Specs: startup, settings layout, seeded profile in /voices, and
generate-to-completed-audio through the full pipeline.
2026-08-08 15:40:36 -07:00

81 lines
1.0 KiB
Plaintext

# Dependencies
node_modules/
bun.lockb
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
env/
ENV/
*.prompt
# Build outputs
dist/
build/
*.egg-info/
*.egg
target/
*.app
*.dmg
*.exe
*.msi
*.deb
*.AppImage
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Data (user-generated)
data/
!data/.gitkeep
# Logs
*.log
logs/
# Environment
.env
.env.local
# Generated files
app/openapi.json
tauri/src-tauri/binaries/*
tauri/src-tauri/gen/Assets.car
tauri/src-tauri/gen/voicebox.icns
tauri/src-tauri/gen/partial.plist
# PyInstaller
*.spec
# Windows artifacts
nul
# Temporary
tmp/
temp/
*.tmp
# E2E test artifacts
backend/tests/results/
backend/tests/fixtures/reference_voice.wav
backend/tests/fixtures/reference_voice.txt
# Local AI assistant workspace settings
.claude/settings.local.json
# Frontend test artifacts
test-results/
playwright-report/
.vitest-attachments/
__screenshots__/
.venv-ci/