Spaces:
Sleeping
Sleeping
File size: 240 Bytes
5f0a2ac | 1 2 3 4 5 6 7 8 9 10 11 | #!/usr/bin/env bash
set -euo pipefail
cd /app
if [[ ! -f .env && -f .env.hf-free.example ]]; then
cp .env.hf-free.example .env
fi
exec python -m uvicorn app.main:app --host "${VOICE_LAB_HOST:-0.0.0.0}" --port "${VOICE_LAB_PORT:-7860}"
|