mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 00:29:15 +02:00
3 lines
193 B
Bash
Executable file
3 lines
193 B
Bash
Executable file
#!/bin/bash -eux
|
|
python /app/manage.py collectstatic --noinput
|
|
gunicorn config.asgi:application -w ${FUNKWHALE_WEB_WORKERS-1} -k uvicorn.workers.UvicornWorker -b 0.0.0.0:5000 ${GUNICORN_ARGS-}
|