nyxsite/app.sh

11 lines
105 B
Bash
Raw Normal View History

2025-02-24 19:40:41 -06:00
#!/usr/bin/env sh
set -eu
main() {
cd site
waitress-serve 'app.app' --port=8041 &
}
main "$@"