Used "0" ip shortcut for runserver example.

This commit is contained in:
Timothy Allen 2017-02-21 19:13:00 -05:00 committed by Tim Graham
parent 0a0c24581e
commit 7d20a7d88a
1 changed files with 7 additions and 6 deletions

View File

@ -173,16 +173,17 @@ It worked!
$ python manage.py runserver 8080 $ python manage.py runserver 8080
If you want to change the server's IP, pass it along with the port. So to If you want to change the server's IP, pass it along with the port. For
listen on all public IPs (useful if you want to show off your work on other example, to listen on all available public IPs (which is useful if you are
computers on your network), use: running Vagrant or want to show off your work on other computers on the
network), use:
.. code-block:: console .. code-block:: console
$ python manage.py runserver 0.0.0.0:8000 $ python manage.py runserver 0:8000
Full docs for the development server can be found in the **0** is a shortcut for **0.0.0.0**. Full docs for the development server
:djadmin:`runserver` reference. can be found in the :djadmin:`runserver` reference.
.. admonition:: Automatic reloading of :djadmin:`runserver` .. admonition:: Automatic reloading of :djadmin:`runserver`