morss/morss-helper
pictuga 730108afbd
Some checks reported errors
continuous-integration/drone/push Build was killed
Clean up install/exec
2021-12-25 18:00:19 +01:00

19 lines
341 B
Bash
Executable File

#! /bin/sh
if [ "$1" = "sh" ] || [ "$1" = "bash" ]; then
exec $@
elif [ -z "$1" ] || [ "$@" = "run" ]; then
gunicorn --bind 0.0.0.0:${PORT:-8000} --preload --access-logfile - morss
elif [ "$@" = "reload" ]; then
pid=$(sudo pidof 'gunicorn: master [morss]')
kill -s USR2 $pid
kill -s WINCH $pid
kill -s TERM $pid
else
morss $@
fi