Ticket #6980: 6980.diff
| File 6980.diff, 1.2 kB (added by programmerq, 5 months ago) |
|---|
-
a/docs/django-admin.txt
old new 392 392 --noreload 393 393 ~~~~~~~~~~ 394 394 395 Use the ``--noreload`` option to disable the use of the auto-reloader. This 396 means any Python code changes you make while the server is running will *not* 397 take effect if the particular Python modules have already been loaded into 398 memory. 395 To disable auto-reloading of code while the development server is running, use the 396 ``--noreload`` option, like so:: 397 398 django-admin.py runserver --noreload 399 400 This means any Python code changes you make while the server is running will 401 *not* take effect if the particular Python modules have already been loaded 402 into memory. 399 403 400 404 Examples of using different ports and addresses 401 405 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ … … 426 430 427 431 .. _serving static files: ../static_files/ 428 432 429 Turning off auto-reload430 ~~~~~~~~~~~~~~~~~~~~~~~431 432 To disable auto-reloading of code while the development server is running, use the433 ``--noreload`` option, like so::434 435 django-admin.py runserver --noreload436 437 433 shell 438 434 ----- 439 435
