ari.lt/run.sh

17 lines
246 B
Bash
Raw Normal View History

#!/bin/sh
set -u
main() {
kill -9 $(pgrep python3) || true
kill -9 $(pgrep gunicorn) || true
cd src
python3 -m pip install gunicorn
source ari-lt.env
python3 -m gunicorn -b 127.0.0.1:17312 -w 1 main:app &
}
main "$@"