diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2005-08-18 04:50:09 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2005-08-18 04:50:09 +0000 |
| commit | cb022650e7c0899f226e31eebb36ea0c33449295 (patch) | |
| tree | b5189b2f2be6d25819d45e519dc003d5bd260e6d /docs/django-admin.txt | |
| parent | 1dccbcdcc1f2690cc0cf7715f31cd0cb4d260309 (diff) | |
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
Diffstat (limited to 'docs/django-admin.txt')
| -rw-r--r-- | docs/django-admin.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/django-admin.txt b/docs/django-admin.txt index c68f2d7ba8..ab9a05052d 100644 --- a/docs/django-admin.txt +++ b/docs/django-admin.txt @@ -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. |
