initial version

This commit is contained in:
2026-06-28 14:24:41 +01:00
commit a5fa596244
388 changed files with 71390 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/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:8000 \
--workers 3 \
--timeout 120