Assuming all cars can see each other ...
Get the IP address of the computer on which the server is running. For example, run ifconfig on the console.
ifconfig eth0 Link encap:Ethernet HWaddr 10:1e:72:b8:2a:4b inet addr:192.168.1.2 Bcast:192.168.1.255 Mask:255.255.255.0 ...
check if the firewall is working. for instance
sudo ufw status
if active, you need to open port 8000, so run the console again
sudo ufw allow 8000/tcp
then run runerver (or runerver_plus when using django-extensions)
python manage.py runserver_plus 192.168.1.2:8000
open a browser on another computer
http:
source share