start.sh 113 B

1234
  1. #!/usr/bin/env bash
  2. PORT="${PORT:-8080}"
  3. uvicorn main:app --host 0.0.0.0 --port $PORT --forwarded-allow-ips '*'