mirror of
https://github.com/remsky/Kokoro-FastAPI.git
synced 2025-04-13 09:39:17 +00:00
12 lines
308 B
Bash
12 lines
308 B
Bash
![]() |
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
if [ "$DOWNLOAD_PTH" = "true" ]; then
|
||
|
python docker/scripts/download_model.py --type pth
|
||
|
fi
|
||
|
|
||
|
if [ "$DOWNLOAD_ONNX" = "true" ]; then
|
||
|
python docker/scripts/download_model.py --type onnx
|
||
|
fi
|
||
|
|
||
|
exec uv run python -m uvicorn api.src.main:app --host 0.0.0.0 --port 8880 --log-level debug
|