Fixed #24704 -- Clarified system check interaction with runserver.

This commit is contained in:
Tim Graham 2015-04-25 15:05:48 -04:00
parent 2d76b61dc2
commit 0f2e82b9ec
1 changed files with 3 additions and 3 deletions

View File

@ -785,9 +785,9 @@ reduction.
.. _pyinotify: https://pypi.python.org/pypi/pyinotify/ .. _pyinotify: https://pypi.python.org/pypi/pyinotify/
When you start the server, and each time you change Python code while the When you start the server, and each time you change Python code while the
server is running, the server will check your entire Django project for errors (see server is running, the system check framework will check your entire Django
the :djadmin:`check` command). If any errors are found, they will be printed project for some common errors (see the :djadmin:`check` command). If any
to standard output, but it won't stop the server. errors are found, they will be printed to standard output.
You can run as many servers as you want, as long as they're on separate ports. You can run as many servers as you want, as long as they're on separate ports.
Just execute ``django-admin runserver`` more than once. Just execute ``django-admin runserver`` more than once.