Skip to content

Commit

Permalink
Use underscore in dir names
Browse files Browse the repository at this point in the history
  • Loading branch information
maximearmstrong committed May 14, 2024
1 parent c1ce57d commit ebd782e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/content/integrations/dbt/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Now that your code is ready, you can run Dagster's UI to take a look at your dbt
1. Change directories to the Dagster project directory:

```shell
cd my-dagster-project/
cd my_dagster_project/
```

2. To start Dagster's UI, run the following:
Expand Down Expand Up @@ -99,7 +99,7 @@ from dagster_dbt import (
dbt_assets,
)

RELATIVE_PATH_TO_MY_DBT_PROJECT = "./my-dbt-project"
RELATIVE_PATH_TO_MY_DBT_PROJECT = "./my_dbt_project"

my_project = DbtProject(
project_dir=Path(__file__)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
dbt_assets,
)

RELATIVE_PATH_TO_MY_DBT_PROJECT = "./my-dbt-project"
RELATIVE_PATH_TO_MY_DBT_PROJECT = "./my_dbt_project"

my_project = DbtProject(
project_dir=Path(__file__)
Expand Down

0 comments on commit ebd782e

Please sign in to comment.