1
0
mirror of https://github.com/django/django.git synced 2024-12-23 01:25:58 +00:00

Clarified docs/django-admin.txt to say 'runserver' runs the model validator automatically

git-svn-id: http://code.djangoproject.com/svn/django/trunk@535 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-08-18 04:50:09 +00:00
parent 1dccbcdcc1
commit cb022650e7

View File

@ -95,6 +95,11 @@ DO NOT USE THIS SERVER IN A PRODUCTION SETTING.
The development server automatically reloads Python code for each request, as
needed. You don't need to restart the server for code changes to take effect.
When you start the server, and each time you change Python code while the
server is running, the server will validate all of your installed models. (See
the "validate" option below.) If the validator finds errors, it will print
them to standard output, but it won't stop the server.
You can run as many servers as you want, as long as they're on separate ports.
Just execute ``django-admin.py runserver`` more than once.