Commit 9b7d38ed authored by Bouke Haarsma's avatar Bouke Haarsma Committed by Tim Graham
Browse files

Fixed #21210 -- Documented when runserver doesn't auto-restart.

Thanks gergely at polonkai.eu for the suggestion.
parent 8ce3c3a9
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -181,6 +181,14 @@ It worked!
    Full docs for the development server can be found in the
    :djadmin:`runserver` reference.

.. admonition:: Automatic reloading of :djadmin:`runserver`

    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. However, some actions like adding files or compiling translation
    files don't trigger a restart, so you'll have to restart the server in
    these cases.

Database setup
--------------

+2 −0
Original line number Diff line number Diff line
@@ -791,6 +791,8 @@ Django.)

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.
However, some actions like adding files or compiling translation files don't
trigger a restart, so you'll have to restart the server in these cases.

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