d2d1903
1
2
3
4
5
6
7
#!/usr/bin/env bash # Start the OrgState API. Env: ORGSTATE_HOST, ORGSTATE_PORT, ORGSTATE_DB_PATH. set -euo pipefail exec uvicorn infra.api.app:app \ --host "${ORGSTATE_HOST:-0.0.0.0}" \ --port "${ORGSTATE_PORT:-8080}"