@@ -29,7 +29,7 @@ Add `#!python "reactpy_django"` to [`INSTALLED_APPS`](https://docs.djangoproject
2929=== "settings.py"
3030
3131 ```python
32- {% include "../../examples/python/configure-installed-apps .py" %}
32+ {% include "../../examples/python/configure_installed_apps .py" %}
3333 ```
3434
3535??? warning "Enable ASGI and Django Channels (Required)"
@@ -42,13 +42,13 @@ Add `#!python "reactpy_django"` to [`INSTALLED_APPS`](https://docs.djangoproject
4242 2. Add `#!python "daphne"` to `#!python INSTALLED_APPS`.
4343
4444 ```python linenums="0"
45- {% include "../../examples/python/configure-channels-installed-app .py" %}
45+ {% include "../../examples/python/configure_channels_installed_app .py" %}
4646 ```
4747
4848 3. Set your `#!python ASGI_APPLICATION` variable.
4949
5050 ```python linenums="0"
51- {% include "../../examples/python/configure-channels-asgi-app .py" %}
51+ {% include "../../examples/python/configure_channels_asgi_app .py" %}
5252 ```
5353
5454??? info "Configure ReactPy settings (Optional)"
@@ -64,7 +64,7 @@ Add ReactPy HTTP paths to your `#!python urlpatterns` in your [`urls.py`](https:
6464=== "urls.py"
6565
6666 ```python
67- {% include "../../examples/python/configure-urls .py" %}
67+ {% include "../../examples/python/configure_urls .py" %}
6868 ```
6969
7070## Step 4: Configure ` asgi.py `
@@ -74,7 +74,7 @@ Register ReactPy's WebSocket using `#!python REACTPY_WEBSOCKET_ROUTE` in your [`
7474=== "asgi.py"
7575
7676 ```python
77- {% include "../../examples/python/configure-asgi .py" %}
77+ {% include "../../examples/python/configure_asgi .py" %}
7878 ```
7979
8080??? info "Add ` #!python AuthMiddlewareStack ` (Optional)"
@@ -88,7 +88,7 @@ Register ReactPy's WebSocket using `#!python REACTPY_WEBSOCKET_ROUTE` in your [`
8888 In these situations will need to ensure you are using `#!python AuthMiddlewareStack`.
8989
9090 ```python linenums="0"
91- {% include "../../examples/python/configure-asgi-middleware .py" start="# start" %}
91+ {% include "../../examples/python/configure_asgi_middleware .py" start="# start" %}
9292 ```
9393
9494??? question "Where is my ` asgi.py ` ?"
0 commit comments