run.sh 156 B

12345678
  1. #!/bin/bash
  2. set -e
  3. APP_MODULE="server.app:app"
  4. HOST="${HOST:-0.0.0.0}"
  5. PORT="${PORT:-8004}"
  6. python -m uvicorn "$APP_MODULE" --host "$HOST" --port "$PORT"