10 lines
166 B
Bash
Executable file
10 lines
166 B
Bash
Executable file
#!/bin/sh -eu
|
|
|
|
[ -z "${DEBUG:-}" ] || set -x
|
|
|
|
# --reload \
|
|
# exec uv run uvicorn \
|
|
exec uvicorn \
|
|
--no-server-header \
|
|
--no-date-header \
|
|
webclip:app
|