pipelines/start.sh
Timothy J. Baek 0f42868f36 init
2024-05-21 14:02:44 -07:00

6 lines
139 B
Bash
Executable File

#!/usr/bin/env bash
PORT="${PORT:-9099}"
HOST="${HOST:-0.0.0.0}"
uvicorn main:app --host "$HOST" --port "$PORT" --forwarded-allow-ips '*'