From cb022650e7c0899f226e31eebb36ea0c33449295 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Thu, 18 Aug 2005 04:50:09 +0000 Subject: [PATCH] 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 --- docs/django-admin.txt | 5 +++++ 1 file changed, 5 insertions(+) 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.