Skip to content

Commit

Permalink
[daggy-u] [dbt] - Correct DuckDB variable in Lesson 7 (#23065)
Browse files Browse the repository at this point in the history
## Summary & Motivation

This PR corrects an env var in `profiles.yml` in Lesson 7. This was
incorrectly `MOTHERDUCK_TOKEN`, but the course uses `DUCKDB_TOKEN`.

## How I Tested These Changes
  • Loading branch information
erinkcochran87 authored Jul 17, 2024
1 parent bdf7873 commit 21f4780
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ dagster_dbt_university:
path: '../{{ env_var("DUCKDB_DATABASE", "data/staging/data.duckdb") }}'
prod:
type: duckdb
path: '{{ env_var("MOTHERDUCK_TOKEN", "") }}'
path: '{{ env_var("DUCKDB_DATABASE", "") }}'
```
Because we’re still using a DuckDB-backed database, our `type` will also be `duckdb` for `prod`. Save and commit the file to git before continuing.
Expand Down

1 comment on commit 21f4780

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for dagster-university ready!

✅ Preview
https://dagster-university-m3k35k44v-elementl.vercel.app

Built with commit 21f4780.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.