Files
project/entrypoint.sh
2026-06-30 12:31:15 +01:00

13 lines
290 B
Bash

#!/bin/sh
echo "Collecting static files..."
python manage.py collectstatic --noinput
echo "Applying migrations..."
python manage.py migrate --noinput
echo "Starting Gunicorn..."
exec gunicorn creativeschool.wsgi:application \
--bind 0.0.0.0:8001 \
--workers 3 \
--timeout 120