11 lines
170 B
Text
11 lines
170 B
Text
|
|
#!/bin/sh -eu
|
||
|
|
|
||
|
|
[ -z "${DEBUG:-}" ] || set -x
|
||
|
|
|
||
|
|
# --reload \
|
||
|
|
# exec poetry run uvicorn \
|
||
|
|
exec uvicorn \
|
||
|
|
--no-server-header \
|
||
|
|
--no-date-header \
|
||
|
|
webclip:app
|