2021-10-31 16:15:08 +00:00
|
|
|
#! /bin/sh
|
|
|
|
|
2021-11-24 20:23:16 +00:00
|
|
|
if [ "$1" = "sh" ] || [ "$1" = "bash" ]; then
|
|
|
|
exec $@
|
|
|
|
|
|
|
|
elif [ -z "$1" ] || [ "$@" = "run" ]; then
|
2021-11-26 06:27:05 +00:00
|
|
|
gunicorn --bind 0.0.0.0:${PORT:-8000} ${GUNICORN} --preload --access-logfile - morss
|
2021-11-24 20:23:16 +00:00
|
|
|
|
2021-10-31 16:15:08 +00:00
|
|
|
else
|
2021-11-21 20:57:06 +00:00
|
|
|
morss $@
|
2021-11-24 20:23:16 +00:00
|
|
|
|
2021-10-31 16:15:08 +00:00
|
|
|
fi
|