Spaces:
Paused
Paused
File size: 367 Bytes
71907f3 | 1 2 3 4 5 6 7 8 9 10 11 12 | #!/bin/bash
# 赋予监控脚本执行权限
chmod +x /app/monitor_and_upload.sh
# 在后台启动监控和上传脚本
echo "Starting background monitor and uploader..."
/app/monitor_and_upload.sh &
# 在前台启动主应用程序
echo "Starting main application (api_v2.py)..."
exec python api_v2.py -a "0.0.0.0" -p "7860" -c "GPT_SoVITS/configs/tts_infer.yaml" |