From 88b03c6d793edf93d0f1e17dd6cec6275ca674fe Mon Sep 17 00:00:00 2001 From: Maxime Armstrong Date: Mon, 13 May 2024 14:06:00 -0400 Subject: [PATCH] Update DbtProject note --- docs/content/integrations/dbt/quickstart.mdx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/content/integrations/dbt/quickstart.mdx b/docs/content/integrations/dbt/quickstart.mdx index 258a305897864..e8635fe2fa2ec 100644 --- a/docs/content/integrations/dbt/quickstart.mdx +++ b/docs/content/integrations/dbt/quickstart.mdx @@ -5,6 +5,15 @@ description: Get started swiftly with this simple dbt + Dagster example. # Quickstart: Run your dbt project with Dagster + + Note: This guide uses the DbtProject class, which + is an experimental feature. Visit the{" "} + + dagster-dbt library API reference + {" "} + for more info. + + If you just want to see the code of the example, skip to the end on this guide.
@@ -79,15 +88,6 @@ With your text editor of choice, create a Python file in the same directory as y The following code assumes that your Python file and dbt project directory are adjacent in the same directory. If that's not the case, make sure to update the `RELATIVE_PATH_TO_YOUR_DBT_PROJECT` constant so that it points to your dbt project. - - Note: This code uses the DbtProject class, which - is an experimental feature. Visit the{" "} - - dagster-dbt library API reference - {" "} - for more info. - - ```python file=/integrations/dbt/quickstart.py startafter=start_example endbefore=end_example from pathlib import Path