From e26f288823458c2d728766250f39c21ab9786b78 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 17 Jul 2006 14:58:39 +0000 Subject: [PATCH] Added 'Turning off auto-reload' section to docs/django-admin.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@3357 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/django-admin.txt | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/django-admin.txt b/docs/django-admin.txt index 04d86aa3b4..eb7b2dccd6 100644 --- a/docs/django-admin.txt +++ b/docs/django-admin.txt @@ -192,6 +192,14 @@ documentation. .. _serving static files: http://www.djangoproject.com/documentation/static_files/ +Turning off auto-reload +~~~~~~~~~~~~~~~~~~~~~~~ + +To disable auto-reloading of code while the development server is running, use the +``--noreload`` option, like so:: + + django-admin.py runserver --noreload + shell -----