5 lines
89 B
Bash
Executable file
5 lines
89 B
Bash
Executable file
#!/bin/sh -eu
|
|
|
|
[ -z "${DEBUG:-}" ] || set -x
|
|
|
|
exec uvicorn --host 0.0.0.0 unwind:web_app
|