later42/start.sh
Dmitriy Lyalyuev 5c37ae78ff
All checks were successful
continuous-integration/drone/push Build is passing
Increase workers and threads
2022-12-09 13:20:08 +03:00

6 lines
153 B
Bash

#!/bin/sh
./manage.py migrate --noinput
./manage.py collectstatic --noinput
exec gunicorn --bind :8000 --workers 8 --threads 4 later42.wsgi:application