From 90bb5b2642a272c40c41b05883ccd01689faecae Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Sun, 22 Dec 2024 00:02:34 +0100 Subject: [PATCH] dbt: Update documentation. Naming things. --- framework/dbt/basic/README.md | 5 ++++- framework/dbt/basic/dbt_project.yml | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/framework/dbt/basic/README.md b/framework/dbt/basic/README.md index 2dc2d85a..01631c1d 100644 --- a/framework/dbt/basic/README.md +++ b/framework/dbt/basic/README.md @@ -1,4 +1,7 @@ -# dbt CrateDB Example +# dbt CrateDB basic example + +## What's Inside +A basic model materialization using the `table` strategy. ## Setup ```shell diff --git a/framework/dbt/basic/dbt_project.yml b/framework/dbt/basic/dbt_project.yml index b47e467e..055f1854 100644 --- a/framework/dbt/basic/dbt_project.yml +++ b/framework/dbt/basic/dbt_project.yml @@ -2,7 +2,7 @@ # Name your project! Project names should contain only lowercase characters # and underscores. A good package name should reflect your organization's # name or the intended use of these models -name: 'dbt_cratedb_example' +name: 'testdrive_basic' version: '1.0.0' config-version: 2 @@ -31,7 +31,7 @@ clean-targets: # directories to be removed by `dbt clean` # directory as views. These settings can be overridden in the individual model # files using the `{{ config(...) }}` macro. models: - dbt_cratedb_example: + testdrive_basic: # Config indicated by + and applies to all files under models/example/ example: +materialized: view