This commit is contained in:
Timothy J. Baek
2024-05-21 14:02:44 -07:00
commit 0f42868f36
5 changed files with 133 additions and 0 deletions

5
start.sh Executable file
View File

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