vocalis / docker-compose.env.example
matheetharanadshyan's picture
Upload folder using huggingface_hub
53b88b6 verified
Raw
History Blame Contribute Delete
932 Bytes
# Copy this file to .env before running docker compose if you want to override defaults.
FRONTEND_PORT=8080
BACKEND_PORT=8000
# Keep this aligned with the public frontend URL.
# For local Docker Compose, the default frontend URL is http://localhost:8080.
VITE_API_BASE_URL=http://localhost:8080
APP_NAME=Vocalis
DEBUG=false
LOG_LEVEL=INFO
TURSO_DATABASE_URL=
TURSO_AUTH_TOKEN=
GROQ_API_KEY=
HUGGINGFACE_MODEL_ID=matheetharanadshyan/wav2vec2-svarah
PHONEME_MODEL_ID=facebook/wav2vec2-lv-60-espeak-cv-ft
USE_PHONEME_MODEL=true
USE_GROQ=true
IO_WORKER_THREADS=8
MODEL_WORKER_THREADS=4
MAX_CONCURRENT_ALIGNMENT_TASKS=2
MAX_CONCURRENT_PHONEME_TASKS=2
MAX_CONCURRENT_FEEDBACK_TASKS=8
AUTH_SESSION_DAYS_VALID=30
AUTH_ROTATE_SESSION_ON_ME=true
AUTH_RATE_LIMIT_ATTEMPTS=5
AUTH_RATE_LIMIT_WINDOW_SECONDS=300
# Only needed if the browser will call the backend directly.
CORS_ALLOWED_ORIGINS=http://localhost:8080,http://127.0.0.1:8080