From 175a43f6ec277f004c60ae1628e94e3c0d8c24c0 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Tue, 24 Sep 2024 10:47:43 -0400 Subject: [PATCH] Closes #139: Tweak installation instructions --- README.md | 2 +- docs/index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 350c238..5196850 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ PLUGINS = [ ] ``` -5. Create `local_settings.py` to override the `DATABASES` & `DATABASE_ROUTERS` settings. This enables dynamic schema support. +5. Create `local_settings.py` (in the same directory as `settings.py`) to override the `DATABASES` & `DATABASE_ROUTERS` settings. This enables dynamic schema support. ```python from netbox_branching.utilities import DynamicSchemaDict diff --git a/docs/index.md b/docs/index.md index 162404f..200c688 100644 --- a/docs/index.md +++ b/docs/index.md @@ -124,7 +124,7 @@ PLUGINS = [ This plugin employs dynamic schema resolution, which requires that we override two low-level Django settings. First, we'll wrap NetBox's configured `DATABASE` parameter with `DynamicSchemaDict` to support dynamic schemas. Second, we'll employ the plugin's custom database router. -Create a new file named `local_settings.py` in the same directory as `configuration.py`, and add the content below. +Create a new file named `local_settings.py` in the same directory as `settings.py`, and add the content below. ```python from netbox_branching.utilities import DynamicSchemaDict