diff --git a/code_thingies/dbtlearn/README.md b/code_thingies/dbtlearn/README.md index 1c5c6d7..343ff58 100644 --- a/code_thingies/dbtlearn/README.md +++ b/code_thingies/dbtlearn/README.md @@ -25,6 +25,7 @@ dbtlearn: Once you have set this up and the database as well, you can run `dbt debug` to ensure everything is set up correctly and dbt can reach the database. +You should also delete the lines under the `dbtlearn` key in the `dbt_project.yml` file. # DBT noisy things below diff --git a/code_thingies/dbtlearn/dbt_project.yml b/code_thingies/dbtlearn/dbt_project.yml index 568066b..6752aa4 100644 --- a/code_thingies/dbtlearn/dbt_project.yml +++ b/code_thingies/dbtlearn/dbt_project.yml @@ -32,6 +32,3 @@ clean-targets: # directories to be removed by `dbt clean` # files using the `{{ config(...) }}` macro. models: dbtlearn: - # Config indicated by + and applies to all files under models/example/ - example: - +materialized: view diff --git a/notes/1.md b/notes/1.md index ba1f52b..a328a88 100644 --- a/notes/1.md +++ b/notes/1.md @@ -87,7 +87,7 @@ dbt makes sense nowadays because the modern data stack makes transformations wit - Intermediate approach between SCD2 and SCD1 -## dbtw overview +## dbt overview - dbt takes care of the T in ETL/ELT. - dbt works within the datawarehouse and with SQL. @@ -99,3 +99,8 @@ dbt makes sense nowadays because the modern data stack makes transformations wit - Data from insideairbnb.com/berlin/ - The project will use snowflake as a DWH and preset (managed superset) as a BI tool. + +## dbt project structure + + +- `dbt_project.yml`: header of the project, with stuff like versioning, the default profile for the project, the paths to different folders, etc. \ No newline at end of file