[Answer]-Can't get Django to server its dev server on my LAN

1👍

According to this documentation,
the right approach would be to set the python manage.py runserver xxx.xxx.xxx.xxx:yyyy to the IP address of the port you’re using [Wi-Fi or Ethernet].
If the other devices are connected to the same LAN, then they should be able to access your Python VirtualEnv straight from their browsers.
Worked just fine on mine.
Also, I use DHCP – don’t know if it changes anything. Just thought I’d mention that.

Leave a comment