Reach django project from anywhere
- Create a django project
settings.py
-ALLOWED_HOSTS = ['*']
python manage.py runserver 0.0.0.0:8000
(binds the server to all available IPs on port 8000, allowing external access.)- Open
http://serverip:8000/
in the browser