mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-04 17:49:24 +01:00
14 lines
239 B
Bash
Executable file
14 lines
239 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -u
|
|
|
|
main() {
|
|
kill -9 $(pgrep python3) || true
|
|
kill -9 $(pgrep memcached) || true
|
|
|
|
cd src
|
|
python3 -m pip install gunicorn
|
|
python3 -m gunicorn -b 127.0.0.1:17312 -w "$(nproc --all)" main:app &
|
|
}
|
|
|
|
main "$@"
|