11 lines
171 B
Bash
11 lines
171 B
Bash
#/bin/sh
|
|
|
|
echo "Migrating..."
|
|
./manage.py migrate >/dev/null
|
|
|
|
|
|
gunicorn \
|
|
--threads 2 \
|
|
--workers 4 \
|
|
--worker-class uvicorn.workers.UvicornWorker \
|
|
facturio.asgi
|