Django & Python Server Fixes
If you see connection refused on 8000, your Python script likely isn't running.
1. Start Django Server
Ensure you are in the directory with `manage.py`:
python manage.py runserver
2. Simple HTTP Server
Just want to serve static files? Python has a built-in one-liner:
# Python 3
python -m http.server 8000