2025-08-11 16:45:47 +05:30
|
|
|
#!/bin/sh
|
|
|
|
|
set -e
|
2024-03-13 11:51:23 +05:30
|
|
|
|
2025-08-11 16:45:47 +05:30
|
|
|
echo "Creating migrations..."
|
2024-03-13 11:51:23 +05:30
|
|
|
python3 manage.py makemigrations
|
2025-08-11 16:45:47 +05:30
|
|
|
|
|
|
|
|
echo "Applying database migrations..."
|
|
|
|
|
python3 manage.py migrate --noinput
|
|
|
|
|
|
|
|
|
|
echo "Collecting static files..."
|
2024-03-13 11:51:23 +05:30
|
|
|
python3 manage.py collectstatic --noinput
|
2025-08-11 16:45:47 +05:30
|
|
|
|
|
|
|
|
echo "Compiling translations..."
|
|
|
|
|
python3 manage.py compilemessages || true
|
|
|
|
|
|
|
|
|
|
echo "Starting Gunicorn..."
|
|
|
|
|
exec gunicorn -c ./deploy/gunicorn.conf.py horilla.wsgi:application
|