All checks were successful
continuous-integration/drone/push Build is passing
6 lines
153 B
Bash
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
|