How to make Django’s devserver public ? Is it generally possible?
python manage.py runserver 0.0.0.0:8181 This will run development server that should listen on all IP’s on port 8181. Note that as of Jun 17, 2011 Django development server is threaded by default (ticket #1609). From docs: Note that the default IP address, 127.0.0.1, is not accessible from other machines on your network. To make your … Read more