nyxsite/app.sh

10 lines
105 B
Bash
Executable file

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