To let the development server use the network you must use the ip of your machine.
1 2 | python manage.py runserver [ip_host]:[port]
ip_host is the ip of your local machine, otherwise the server only binds to loopback
|
More like this
- csrf test by zukosdead 2 weeks ago
- find even number by Rajeev529 8 months, 3 weeks ago
- Form field with fixed value by roam 9 months, 2 weeks ago
- New Snippet! by Antoliny0919 9 months, 3 weeks ago
- Add Toggle Switch Widget to Django Forms by OgliariNatan 1 year ago
Comments
Alternatively, you can use 0.0.0.0:[port] to bind to all interfaces on your machine.
#
Please login first before commenting.