funquail/api/compose/django/server.sh

13 lines
295 B
Bash
Raw Normal View History

2022-11-24 21:14:59 +01:00
#!/bin/sh
set -eux
funkwhale-manage collectstatic --noinput
funkwhale-manage migrate
2022-11-24 21:14:59 +01:00
# shellcheck disable=SC2086
gunicorn config.asgi:application \
--workers "${FUNKWHALE_WEB_WORKERS-1}" \
--worker-class uvicorn.workers.UvicornWorker \
--bind 0.0.0.0:5000 \
${GUNICORN_ARGS-}