2022-11-24 21:14:59 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
set -eux
|
|
|
|
|
|
2026-01-24 20:40:33 -03:00
|
|
|
funquail-manage collectstatic --noinput
|
|
|
|
|
funquail-manage migrate
|
2022-11-24 21:14:59 +01:00
|
|
|
|
|
|
|
|
# shellcheck disable=SC2086
|
2023-01-17 16:51:33 +01:00
|
|
|
exec gunicorn config.asgi:application \
|
2026-01-24 16:16:49 -03:00
|
|
|
--workers "${FUNQUAIL_WEB_WORKERS-1}" \
|
2022-11-24 21:14:59 +01:00
|
|
|
--worker-class uvicorn.workers.UvicornWorker \
|
|
|
|
|
--bind 0.0.0.0:5000 \
|
|
|
|
|
${GUNICORN_ARGS-}
|