funkwhale/api/docker/server.sh

14 wiersze
295 B
Bash
Czysty Zwykły widok Historia

2022-11-24 20:14:59 +00:00
#!/bin/sh
set -eux
funkwhale-manage collectstatic --noinput
funkwhale-manage migrate
2022-11-24 20:14:59 +00: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-}