20 lines
484 B
Bash
Executable File
20 lines
484 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd /home/xsl/product
|
|
|
|
PY="/home/xsl/miniconda3/envs/MuseTalk/bin/python"
|
|
|
|
if [[ -f ".env" ]]; then
|
|
# shellcheck disable=SC2046
|
|
export $(grep -E '^[A-Za-z_][A-Za-z0-9_]*=' .env | xargs)
|
|
fi
|
|
|
|
ARGS=(main:app --host "${WEBRTC_HOST:-0.0.0.0}" --port "${WEBRTC_PORT:-8080}")
|
|
|
|
if [[ -n "${SSL_CERTFILE:-}" && -n "${SSL_KEYFILE:-}" ]]; then
|
|
ARGS+=(--ssl-certfile "$SSL_CERTFILE" --ssl-keyfile "$SSL_KEYFILE")
|
|
fi
|
|
|
|
exec "$PY" -m uvicorn "${ARGS[@]}"
|