cat > start_django.sh << 'EOF'
#!/bin/bash
cd /path/to/mydjango_project
source venv/bin/activate
python manage.py runserver 0.0.0.0:8000
EOF

chmod +x start_django.sh