add run script

This commit is contained in:
Nyx 2025-03-22 03:20:22 -05:00
parent abdea7e57b
commit bc71ab197d

10
run.sh Normal file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env sh
set -eu
main() {
cd site
waitress-serve --port=65193 'app.app' &
}
main "$@"