0
0
mirror of https://github.com/django/django.git synced 2024-12-01 15:42:04 +01:00

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
This commit is contained in:
Adrian Holovaty 2006-07-17 14:58:39 +00:00
parent 6870edf2a0
commit e26f288823

View File

@ -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
-----