mirror of
https://github.com/tanrax/org-social-relay
synced 2026-01-08 06:13:33 +01:00
16 lines
386 B
Bash
Executable File
16 lines
386 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
echo "🚀 Starting Django application..."
|
|
|
|
# Run migrations
|
|
echo "🔄 Running database migrations..."
|
|
python manage.py migrate
|
|
|
|
# Check for any issues
|
|
echo "🔍 Checking Django configuration..."
|
|
python manage.py check
|
|
|
|
# Start Django development server
|
|
echo "🎯 Starting Django development server on 0.0.0.0:8000..."
|
|
exec python manage.py runserver 0.0.0.0:8000 |