Files
links/.history/backend/entrypoint_20251029192540.sh
2025-10-29 20:22:35 +09:00

7 lines
181 B
Bash

#!/bin/bash
echo "Collecting static files..."
python manage.py collectstatic --noinput --clear
echo "Starting server..."
exec gunicorn backend.wsgi:application --bind 0.0.0.0:8000