From b1018f70eb398f9d0f8bd6a4c17b2e023a79ff6d Mon Sep 17 00:00:00 2001 From: mirnawong1 Date: Tue, 26 Nov 2024 16:21:33 +0000 Subject: [PATCH 01/11] add relative path info --- .../project-configs/analysis-paths.md | 24 +++++++++++++++++-- .../reference/project-configs/asset-paths.md | 22 ++++++++++++++++- .../reference/project-configs/docs-paths.md | 19 +++++++++++++++ .../reference/project-configs/macro-paths.md | 21 +++++++++++++++- .../reference/project-configs/model-paths.md | 21 +++++++++++++++- .../reference/project-configs/seed-paths.md | 21 +++++++++++++++- .../project-configs/snapshot-paths.md | 22 ++++++++++++++++- .../reference/project-configs/test-paths.md | 19 +++++++++++++++ website/snippets/_relative-path.md | 1 + 9 files changed, 163 insertions(+), 7 deletions(-) create mode 100644 website/snippets/_relative-path.md diff --git a/website/docs/reference/project-configs/analysis-paths.md b/website/docs/reference/project-configs/analysis-paths.md index 5c3d223a5cb..97914c83431 100644 --- a/website/docs/reference/project-configs/analysis-paths.md +++ b/website/docs/reference/project-configs/analysis-paths.md @@ -13,12 +13,32 @@ analysis-paths: [directorypath] ## Definition -Specify a custom list of directories where [analyses](/docs/build/analyses) are located. +Specify a custom list of directories where [analyses](/docs/build/analyses) are located. ## Default Without specifying this config, dbt will not compile any `.sql` files as analyses. -However, the [`dbt init` command](/reference/commands/init) populates this value as `analyses` ([source](https://github.com/dbt-labs/dbt-starter-project/blob/HEAD/dbt_project.yml#L15)) +However, the [`dbt init` command](/reference/commands/init) populates this value as `analyses` ([source](https://github.com/dbt-labs/dbt-starter-project/blob/HEAD/dbt_project.yml#L15)). + +import RelativePath from '/snippets/_relative-path.md'; + + + +- ✅ **Do:** + ```yml + # Recommended relative path example + analysis-paths: ["analyses"] + ``` + +- ❌ **Don't:** + ```yml + # Avoid using absolute paths + analysis-paths: ["/Users/username/project/analyses"] + ``` + ## Examples ### Use a subdirectory named `analyses` diff --git a/website/docs/reference/project-configs/asset-paths.md b/website/docs/reference/project-configs/asset-paths.md index 1fb3cf9f260..693b44fa860 100644 --- a/website/docs/reference/project-configs/asset-paths.md +++ b/website/docs/reference/project-configs/asset-paths.md @@ -15,8 +15,28 @@ asset-paths: [directorypath] ## Definition Optionally specify a custom list of directories to copy to the `target` directory as part of the `docs generate` command. This is useful for rendering images in your repository in your project documentation. + ## Default -By default, dbt will not copy any additional files as part of docs generate, i.e. `asset-paths: []` +By default, dbt will not copy any additional files as part of docs generate, i.e. `asset-paths: []`. + +import RelativePath from '/snippets/_relative-path.md'; + + + +- ✅ **Do:** + ```yml + # Recommended relative path example + asset-paths: ["assets"] + ``` + +- ❌ **Don't:** + ```yml + # Avoid using absolute paths + asset-paths: ["/Users/username/project/assets"] + ``` ## Examples ### Compile files in the `assets` subdirectory as part of `docs generate` diff --git a/website/docs/reference/project-configs/docs-paths.md b/website/docs/reference/project-configs/docs-paths.md index 5481c19c9fd..fb9620ad58e 100644 --- a/website/docs/reference/project-configs/docs-paths.md +++ b/website/docs/reference/project-configs/docs-paths.md @@ -30,6 +30,25 @@ By default, dbt will search in all resource paths for docs blocks (i.e. the comb +import RelativePath from '/snippets/_relative-path.md'; + + + +- ✅ **Do:** + ```yml + # Recommended relative path example + docs-paths: ["docs"] + ``` + +- ❌ **Don't:** + ```yml + # Avoid using absolute paths + docs-paths: ["/Users/username/project/docs"] + ``` + ## Example Use a subdirectory named `docs` for docs blocks: diff --git a/website/docs/reference/project-configs/macro-paths.md b/website/docs/reference/project-configs/macro-paths.md index 486ec08ffdf..1d299a16887 100644 --- a/website/docs/reference/project-configs/macro-paths.md +++ b/website/docs/reference/project-configs/macro-paths.md @@ -16,7 +16,26 @@ macro-paths: [directorypath] Optionally specify a custom list of directories where [macros](/docs/build/jinja-macros#macros) are located. Note that you cannot co-locate models and macros. ## Default -By default, dbt will search for macros in a directory named `macros`, i.e. `macro-paths: ["macros"]` +By default, dbt will search for macros in a directory named `macros`, i.e. `macro-paths: ["macros"]`. + +import RelativePath from '/snippets/_relative-path.md'; + + + +- ✅ **Do:** + ```yml + # Recommended relative path example + macro-paths: ["macros"] + ``` + +- ❌ **Don't:** + ```yml + # Avoid using absolute paths + macro-paths: ["/Users/username/project/macros"] + ``` ## Examples ### Use a subdirectory named `custom_macros` instead of `macros` diff --git a/website/docs/reference/project-configs/model-paths.md b/website/docs/reference/project-configs/model-paths.md index a0652432787..1418d68deda 100644 --- a/website/docs/reference/project-configs/model-paths.md +++ b/website/docs/reference/project-configs/model-paths.md @@ -15,7 +15,26 @@ model-paths: [directorypath] Optionally specify a custom list of directories where [models](/docs/build/models) and [sources](/docs/build/sources) are located. ## Default -By default, dbt will search for models and sources in the `models` directory, i.e. `model-paths: ["models"]` +By default, dbt will search for models and sources in the `models` directory, i.e. `model-paths: ["models"]`. + +import RelativePath from '/snippets/_relative-path.md'; + + + +- ✅ **Do:** + ```yml + # Recommended relative path example + model-paths: ["models"] + ``` + +- ❌ **Don't:** + ```yml + # Avoid using absolute paths + model-paths: ["/Users/username/project/models"] + ``` ## Examples ### Use a subdirectory named `transformations` instead of `models` diff --git a/website/docs/reference/project-configs/seed-paths.md b/website/docs/reference/project-configs/seed-paths.md index 614bda62cd2..943921f9ae9 100644 --- a/website/docs/reference/project-configs/seed-paths.md +++ b/website/docs/reference/project-configs/seed-paths.md @@ -16,7 +16,26 @@ Optionally specify a custom list of directories where [seed](/docs/build/seeds) ## Default -By default, dbt expects seeds to be located in the `seeds` directory, i.e. `seed-paths: ["seeds"]` +By default, dbt expects seeds to be located in the `seeds` directory, i.e. `seed-paths: ["seeds"]`. + +import RelativePath from '/snippets/_relative-path.md'; + + + +- ✅ **Do:** + ```yml + # Recommended relative path example + seed-paths: ["seed"] + ``` + +- ❌ **Don't:** + ```yml + # Avoid using absolute paths + seed-paths: ["/Users/username/project/seed"] + ``` ## Examples ### Use a subdirectory named `custom_seeds` instead of `seeds` diff --git a/website/docs/reference/project-configs/snapshot-paths.md b/website/docs/reference/project-configs/snapshot-paths.md index 8319833f1e6..044b49c4891 100644 --- a/website/docs/reference/project-configs/snapshot-paths.md +++ b/website/docs/reference/project-configs/snapshot-paths.md @@ -24,7 +24,27 @@ Note that you cannot co-locate models and snapshots. However, in [Versionless](/ ## Default -By default, dbt will search for snapshots in the `snapshots` directory, i.e. `snapshot-paths: ["snapshots"]` +By default, dbt will search for snapshots in the `snapshots` directory, i.e. `snapshot-paths: ["snapshots"]`. + + +import RelativePath from '/snippets/_relative-path.md'; + + + +- ✅ **Do:** + ```yml + # Recommended relative path example + snapshot-paths: ["snapshots"] + ``` + +- ❌ **Don't:** + ```yml + # Avoid using absolute paths + snapshot-paths: ["/Users/username/project/snapshots"] + ``` ## Examples ### Use a subdirectory named `archives` instead of `snapshots` diff --git a/website/docs/reference/project-configs/test-paths.md b/website/docs/reference/project-configs/test-paths.md index 6749a07d23d..0da190dbd3e 100644 --- a/website/docs/reference/project-configs/test-paths.md +++ b/website/docs/reference/project-configs/test-paths.md @@ -21,6 +21,25 @@ Without specifying this config, dbt will search for tests in the `tests` directo - Generic test definitions in the `tests/generic` subdirectory - Singular tests (all other files) +import RelativePath from '/snippets/_relative-path.md'; + + + +- ✅ **Do:** + ```yml + # Recommended relative path example + test-paths: ["test"] + ``` + +- ❌ **Don't:** + ```yml + # Avoid using absolute paths + test-paths: ["/Users/username/project/test"] + ``` + ## Examples ### Use a subdirectory named `custom_tests` instead of `tests` for data tests diff --git a/website/snippets/_relative-path.md b/website/snippets/_relative-path.md new file mode 100644 index 00000000000..48643e695c9 --- /dev/null +++ b/website/snippets/_relative-path.md @@ -0,0 +1 @@ +Paths specified in {props.path} must be relative to the location of your `dbt_project.yml` file. Avoid using absolute paths like {props.absolute}, as they may lead to unexpected behavior. From ef64699113ca46fdc4b1263df14eeb18b5da62df Mon Sep 17 00:00:00 2001 From: mirnawong1 Date: Tue, 26 Nov 2024 16:25:25 +0000 Subject: [PATCH 02/11] add --- website/docs/reference/project-configs/model-paths.md | 1 - 1 file changed, 1 deletion(-) diff --git a/website/docs/reference/project-configs/model-paths.md b/website/docs/reference/project-configs/model-paths.md index 1418d68deda..7c011948c19 100644 --- a/website/docs/reference/project-configs/model-paths.md +++ b/website/docs/reference/project-configs/model-paths.md @@ -35,7 +35,6 @@ absolute="/Users/username/project/models" # Avoid using absolute paths model-paths: ["/Users/username/project/models"] ``` - ## Examples ### Use a subdirectory named `transformations` instead of `models` From b93d373b808e68a0938d13526dc0c752faf3edaf Mon Sep 17 00:00:00 2001 From: Mirna Wong <89008547+mirnawong1@users.noreply.github.com> Date: Wed, 27 Nov 2024 09:18:32 +0000 Subject: [PATCH 03/11] Update website/docs/reference/project-configs/seed-paths.md Co-authored-by: Matt Shaver <60105315+matthewshaver@users.noreply.github.com> --- website/docs/reference/project-configs/seed-paths.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/reference/project-configs/seed-paths.md b/website/docs/reference/project-configs/seed-paths.md index 943921f9ae9..a933f0e0383 100644 --- a/website/docs/reference/project-configs/seed-paths.md +++ b/website/docs/reference/project-configs/seed-paths.md @@ -16,7 +16,7 @@ Optionally specify a custom list of directories where [seed](/docs/build/seeds) ## Default -By default, dbt expects seeds to be located in the `seeds` directory, i.e. `seed-paths: ["seeds"]`. +By default, dbt expects seeds to be located in the `seeds` directory. For example, `seed-paths: ["seeds"]`. import RelativePath from '/snippets/_relative-path.md'; From 2f5e1b7dfc10526b05f7408ad292ee5f8bc7efd6 Mon Sep 17 00:00:00 2001 From: Mirna Wong <89008547+mirnawong1@users.noreply.github.com> Date: Wed, 27 Nov 2024 09:18:47 +0000 Subject: [PATCH 04/11] Update website/docs/reference/project-configs/asset-paths.md Co-authored-by: Matt Shaver <60105315+matthewshaver@users.noreply.github.com> --- website/docs/reference/project-configs/asset-paths.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/reference/project-configs/asset-paths.md b/website/docs/reference/project-configs/asset-paths.md index 693b44fa860..6d81733f925 100644 --- a/website/docs/reference/project-configs/asset-paths.md +++ b/website/docs/reference/project-configs/asset-paths.md @@ -17,7 +17,7 @@ Optionally specify a custom list of directories to copy to the `target` director ## Default -By default, dbt will not copy any additional files as part of docs generate, i.e. `asset-paths: []`. +By default, dbt will not copy any additional files as part of docs generate. For example, `asset-paths: []`. import RelativePath from '/snippets/_relative-path.md'; From 2dec2f7a08a8717376ee17d756c1ae57aa5a1524 Mon Sep 17 00:00:00 2001 From: Mirna Wong <89008547+mirnawong1@users.noreply.github.com> Date: Wed, 27 Nov 2024 09:18:52 +0000 Subject: [PATCH 05/11] Update website/docs/reference/project-configs/macro-paths.md Co-authored-by: Matt Shaver <60105315+matthewshaver@users.noreply.github.com> --- website/docs/reference/project-configs/macro-paths.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/reference/project-configs/macro-paths.md b/website/docs/reference/project-configs/macro-paths.md index 1d299a16887..a51cb358640 100644 --- a/website/docs/reference/project-configs/macro-paths.md +++ b/website/docs/reference/project-configs/macro-paths.md @@ -16,7 +16,7 @@ macro-paths: [directorypath] Optionally specify a custom list of directories where [macros](/docs/build/jinja-macros#macros) are located. Note that you cannot co-locate models and macros. ## Default -By default, dbt will search for macros in a directory named `macros`, i.e. `macro-paths: ["macros"]`. +By default, dbt will search for macros in a directory named `macros`. For example, `macro-paths: ["macros"]`. import RelativePath from '/snippets/_relative-path.md'; From b74d1e7455be981953d8cfafaded1ba6c75b2d69 Mon Sep 17 00:00:00 2001 From: Mirna Wong <89008547+mirnawong1@users.noreply.github.com> Date: Wed, 27 Nov 2024 09:18:58 +0000 Subject: [PATCH 06/11] Update website/docs/reference/project-configs/model-paths.md Co-authored-by: Matt Shaver <60105315+matthewshaver@users.noreply.github.com> --- website/docs/reference/project-configs/model-paths.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/reference/project-configs/model-paths.md b/website/docs/reference/project-configs/model-paths.md index 7c011948c19..011f199e710 100644 --- a/website/docs/reference/project-configs/model-paths.md +++ b/website/docs/reference/project-configs/model-paths.md @@ -15,7 +15,7 @@ model-paths: [directorypath] Optionally specify a custom list of directories where [models](/docs/build/models) and [sources](/docs/build/sources) are located. ## Default -By default, dbt will search for models and sources in the `models` directory, i.e. `model-paths: ["models"]`. +By default, dbt will search for models and sources in the `models` directory. For example, `model-paths: ["models"]`. import RelativePath from '/snippets/_relative-path.md'; From 3d9ca0dda4e7444e97fad0489cdf41284d19a30b Mon Sep 17 00:00:00 2001 From: mirnawong1 Date: Wed, 27 Nov 2024 09:40:17 +0000 Subject: [PATCH 07/11] matt's feedback --- .../docs/reference/project-configs/analysis-paths.md | 10 +++++----- website/snippets/_relative-path.md | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/website/docs/reference/project-configs/analysis-paths.md b/website/docs/reference/project-configs/analysis-paths.md index 97914c83431..a974279ed30 100644 --- a/website/docs/reference/project-configs/analysis-paths.md +++ b/website/docs/reference/project-configs/analysis-paths.md @@ -25,21 +25,21 @@ import RelativePath from '/snippets/_relative-path.md'; -- ✅ **Do:** +- ✅ **Do** + - Use relative path: ```yml - # Recommended relative path example analysis-paths: ["analyses"] ``` -- ❌ **Don't:** +- ❌ **Don't** + - Avoid absolute paths: ```yml - # Avoid using absolute paths analysis-paths: ["/Users/username/project/analyses"] ``` - ## Examples ### Use a subdirectory named `analyses` This is the value populated by the [`dbt init` command](/reference/commands/init). diff --git a/website/snippets/_relative-path.md b/website/snippets/_relative-path.md index 48643e695c9..791f8e83f7e 100644 --- a/website/snippets/_relative-path.md +++ b/website/snippets/_relative-path.md @@ -1 +1 @@ -Paths specified in {props.path} must be relative to the location of your `dbt_project.yml` file. Avoid using absolute paths like {props.absolute}, as they may lead to unexpected behavior. +Paths specified in {props.path} must be relative to the location of your `dbt_project.yml` file. Avoid using absolute paths like {props.absolute}, as it will lead to unexpected behavior and outcomes. From fcde335051a3bcad1a66cd7d2e671116504fe002 Mon Sep 17 00:00:00 2001 From: mirnawong1 Date: Wed, 27 Nov 2024 09:43:00 +0000 Subject: [PATCH 08/11] remove value --- website/docs/reference/project-configs/analysis-paths.md | 1 - 1 file changed, 1 deletion(-) diff --git a/website/docs/reference/project-configs/analysis-paths.md b/website/docs/reference/project-configs/analysis-paths.md index a974279ed30..20e2e65c2ad 100644 --- a/website/docs/reference/project-configs/analysis-paths.md +++ b/website/docs/reference/project-configs/analysis-paths.md @@ -25,7 +25,6 @@ import RelativePath from '/snippets/_relative-path.md'; - ✅ **Do** From 07211dd0c76ba4963f962cc4019cd4dc0dd92427 Mon Sep 17 00:00:00 2001 From: mirnawong1 Date: Wed, 27 Nov 2024 09:49:03 +0000 Subject: [PATCH 09/11] fix others --- website/docs/reference/project-configs/asset-paths.md | 8 ++++---- website/docs/reference/project-configs/docs-paths.md | 8 ++++---- website/docs/reference/project-configs/macro-paths.md | 6 +++--- website/docs/reference/project-configs/model-paths.md | 7 ++++--- website/docs/reference/project-configs/seed-paths.md | 6 +++--- website/docs/reference/project-configs/snapshot-paths.md | 6 +++--- website/docs/reference/project-configs/test-paths.md | 6 +++--- 7 files changed, 24 insertions(+), 23 deletions(-) diff --git a/website/docs/reference/project-configs/asset-paths.md b/website/docs/reference/project-configs/asset-paths.md index 693b44fa860..1edd62cbc93 100644 --- a/website/docs/reference/project-configs/asset-paths.md +++ b/website/docs/reference/project-configs/asset-paths.md @@ -26,15 +26,15 @@ path="asset-paths" absolute="/Users/username/project/assets" /> -- ✅ **Do:** +- ✅ **Do** + - Use relative path: ```yml - # Recommended relative path example asset-paths: ["assets"] ``` -- ❌ **Don't:** +- ❌ **Don't** + - Avoid absolute paths: ```yml - # Avoid using absolute paths asset-paths: ["/Users/username/project/assets"] ``` diff --git a/website/docs/reference/project-configs/docs-paths.md b/website/docs/reference/project-configs/docs-paths.md index fb9620ad58e..6cd179201fc 100644 --- a/website/docs/reference/project-configs/docs-paths.md +++ b/website/docs/reference/project-configs/docs-paths.md @@ -37,15 +37,15 @@ path="docs-paths" absolute="/Users/username/project/docs" /> -- ✅ **Do:** +- ✅ **Do** + - Use relative path: ```yml - # Recommended relative path example docs-paths: ["docs"] ``` -- ❌ **Don't:** +- ❌ **Don't** + - Avoid absolute paths: ```yml - # Avoid using absolute paths docs-paths: ["/Users/username/project/docs"] ``` diff --git a/website/docs/reference/project-configs/macro-paths.md b/website/docs/reference/project-configs/macro-paths.md index 1d299a16887..b1ecb7c446d 100644 --- a/website/docs/reference/project-configs/macro-paths.md +++ b/website/docs/reference/project-configs/macro-paths.md @@ -25,15 +25,15 @@ path="macro-paths" absolute="/Users/username/project/macros" /> -- ✅ **Do:** +- ✅ **Do** + - Use relative path: ```yml - # Recommended relative path example macro-paths: ["macros"] ``` - ❌ **Don't:** + - Avoid absolute paths: ```yml - # Avoid using absolute paths macro-paths: ["/Users/username/project/macros"] ``` diff --git a/website/docs/reference/project-configs/model-paths.md b/website/docs/reference/project-configs/model-paths.md index 7c011948c19..92029ccf80a 100644 --- a/website/docs/reference/project-configs/model-paths.md +++ b/website/docs/reference/project-configs/model-paths.md @@ -24,17 +24,18 @@ path="model-paths" absolute="/Users/username/project/models" /> -- ✅ **Do:** +- ✅ **Do** + - Use relative path: ```yml - # Recommended relative path example model-paths: ["models"] ``` - ❌ **Don't:** + - Avoid absolute paths: ```yml - # Avoid using absolute paths model-paths: ["/Users/username/project/models"] ``` + ## Examples ### Use a subdirectory named `transformations` instead of `models` diff --git a/website/docs/reference/project-configs/seed-paths.md b/website/docs/reference/project-configs/seed-paths.md index 943921f9ae9..72c6aa0a5d1 100644 --- a/website/docs/reference/project-configs/seed-paths.md +++ b/website/docs/reference/project-configs/seed-paths.md @@ -25,15 +25,15 @@ path="seed-paths" absolute="/Users/username/project/seed" /> -- ✅ **Do:** +- ✅ **Do** + - Use relative path: ```yml - # Recommended relative path example seed-paths: ["seed"] ``` - ❌ **Don't:** + - Avoid absolute paths: ```yml - # Avoid using absolute paths seed-paths: ["/Users/username/project/seed"] ``` diff --git a/website/docs/reference/project-configs/snapshot-paths.md b/website/docs/reference/project-configs/snapshot-paths.md index 044b49c4891..9081760804a 100644 --- a/website/docs/reference/project-configs/snapshot-paths.md +++ b/website/docs/reference/project-configs/snapshot-paths.md @@ -34,15 +34,15 @@ path="snapshot-paths" absolute="/Users/username/project/snapshots" /> -- ✅ **Do:** +- ✅ **Do** + - Use relative path: ```yml - # Recommended relative path example snapshot-paths: ["snapshots"] ``` - ❌ **Don't:** + - Avoid absolute paths: ```yml - # Avoid using absolute paths snapshot-paths: ["/Users/username/project/snapshots"] ``` diff --git a/website/docs/reference/project-configs/test-paths.md b/website/docs/reference/project-configs/test-paths.md index 0da190dbd3e..ab816eec973 100644 --- a/website/docs/reference/project-configs/test-paths.md +++ b/website/docs/reference/project-configs/test-paths.md @@ -28,15 +28,15 @@ path="test-paths" absolute="/Users/username/project/test" /> -- ✅ **Do:** +- ✅ **Do** + - Use relative path: ```yml - # Recommended relative path example test-paths: ["test"] ``` - ❌ **Don't:** + - Avoid absolute paths: ```yml - # Avoid using absolute paths test-paths: ["/Users/username/project/test"] ``` From f433ab4193edf97ab369b954239d29bd981dceb9 Mon Sep 17 00:00:00 2001 From: mirnawong1 Date: Wed, 27 Nov 2024 09:50:52 +0000 Subject: [PATCH 10/11] latin abbr --- website/docs/reference/project-configs/asset-paths.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/reference/project-configs/asset-paths.md b/website/docs/reference/project-configs/asset-paths.md index 1edd62cbc93..5857f4fae20 100644 --- a/website/docs/reference/project-configs/asset-paths.md +++ b/website/docs/reference/project-configs/asset-paths.md @@ -17,7 +17,7 @@ Optionally specify a custom list of directories to copy to the `target` director ## Default -By default, dbt will not copy any additional files as part of docs generate, i.e. `asset-paths: []`. +By default, dbt will not copy any additional files as part of docs generate, for example `asset-paths: []`. import RelativePath from '/snippets/_relative-path.md'; From 63a2267a49a88851f32e391ccd848ce2ac5bb7b7 Mon Sep 17 00:00:00 2001 From: mirnawong1 Date: Wed, 27 Nov 2024 09:53:27 +0000 Subject: [PATCH 11/11] fix latin abbr --- website/docs/reference/project-configs/snapshot-paths.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/reference/project-configs/snapshot-paths.md b/website/docs/reference/project-configs/snapshot-paths.md index 9081760804a..a4dd5af9434 100644 --- a/website/docs/reference/project-configs/snapshot-paths.md +++ b/website/docs/reference/project-configs/snapshot-paths.md @@ -24,7 +24,7 @@ Note that you cannot co-locate models and snapshots. However, in [Versionless](/ ## Default -By default, dbt will search for snapshots in the `snapshots` directory, i.e. `snapshot-paths: ["snapshots"]`. +By default, dbt will search for snapshots in the `snapshots` directory. For example, `snapshot-paths: ["snapshots"]`. import RelativePath from '/snippets/_relative-path.md';