7 lines
98 B
Bash
Executable file
7 lines
98 B
Bash
Executable file
#!/bin/sh -eu
|
|
|
|
cd "$RUN_DIR"
|
|
|
|
[ -z "${DEBUG:-}" ] || set -x
|
|
|
|
exec uvicorn unwind:web_app --reload
|