Files
RasadDam_Backend/entrypoint.sh

16 lines
324 B
Bash
Raw Normal View History

2025-04-29 15:43:53 +03:30
#!/bin/sh
2025-10-19 10:46:44 +03:30
echo "🚀 Make migrations..."
python manage.py migrate --noinput
echo "🚀 Applying database migrations..."
2025-04-29 15:43:53 +03:30
python manage.py migrate --noinput
2025-10-19 10:46:44 +03:30
echo "🎯 Collect static files..."
2025-04-29 15:43:53 +03:30
python manage.py collectstatic --noinput
2025-10-19 10:46:44 +03:30
echo "✅ Starting Django server..."
python manage.py runserver 0.0.0.0:5000
2025-04-29 15:43:53 +03:30
exec "$@"