blob: 674928105015298c947f28b84ca092e6383e0438 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
# Run database migrations
python manage.py migrate
# Collect static files
python manage.py collectstatic --noinput
# Start the Gunicorn server
exec gunicorn yugen.wsgi:application --bind 0.0.0.0:8000
|