blob: 87822117549c7b40bb7f24986506efd118e997d4 (
plain) (
blame)
1
2
3
4
5
6
|
#!/bin/sh
cd /app
python manage.py migrate
python manage createsuperuser --noinput
python manage.py collectstatic --noinput
exec gunicorn --bind ':8080' --workers 3 ded.wsgi:application
|