2021-06-15 19:09:21 +02:00
|
|
|
#!/bin/sh -eu
|
|
|
|
|
|
2023-03-17 23:17:28 +01:00
|
|
|
: "${UNWIND_PORT:=8097}"
|
|
|
|
|
|
2021-06-21 18:54:03 +02:00
|
|
|
cd "$RUN_DIR"
|
|
|
|
|
|
2021-06-15 19:09:21 +02:00
|
|
|
[ -z "${DEBUG:-}" ] || set -x
|
|
|
|
|
|
2023-03-17 23:17:28 +01:00
|
|
|
export UNWIND_PORT
|
|
|
|
|
|
|
|
|
|
exec uvicorn \
|
|
|
|
|
--host 0.0.0.0 \
|
|
|
|
|
--port "$UNWIND_PORT" \
|
|
|
|
|
--factory unwind:create_app
|