mirror of
https://github.com/remsky/Kokoro-FastAPI.git
synced 2025-04-13 09:39:17 +00:00
8 lines
No EOL
239 B
Bash
8 lines
No EOL
239 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
if [ "$DOWNLOAD_MODEL" = "true" ]; then
|
|
python download_model.py --output api/src/models/v1_0
|
|
fi
|
|
|
|
exec uv run --extra $DEVICE --no-sync python -m uvicorn api.src.main:app --host 0.0.0.0 --port 8880 --log-level debug |