diff --git a/dags/dbt/dbt_project.yml b/dags/dbt/dbt_project.yml index b0f02aa..414ff87 100644 --- a/dags/dbt/dbt_project.yml +++ b/dags/dbt/dbt_project.yml @@ -6,40 +6,26 @@ version: '1.0' config-version: 2 -# This setting configures which "profile" dbt uses for this project. Profiles contain -# database connection information, and should be configured in the ~/.dbt/profiles.yml file profile: 'transactions' -# These configurations specify where dbt should look for different types of files. -# The `source-paths` config, for example, states that source models can be found -# in the "models/" directory. You probably won't need to change these! model-paths: ["models"] analysis-paths: ["analysis"] test-paths: ["tests"] seed-paths: ["data"] macro-paths: ["macros"] -target-path: "target" # directory which will store compiled SQL files -clean-targets: # directories to be removed by `dbt clean` +target-path: "target" +clean-targets: - "target" - "dbt_modules" -# You can define configurations for models in the `source-paths` directory here. -# Using these configurations, you can enable or disable models, change how they -# are materialized, and more! - -# In this example config, we tell dbt to build all models in the fffff-dbt/ directory -# as views (the default). These settings can be overridden in the individual model files -# using the `{{ config(...) }}` macro. -models: - bank_transactions: - # Applies to all files under models/base/ - # TODO: These are not being picked up... - enriched_transactions: - +materialized: table - columns: - - name: payer_country - tests: - - not_null - filter_countries: - +materialized: table +#models: +# bank_transactions: +# enriched_transactions: +# +materialized: table +# columns: +# - name: payer_country +# tests: +# - not_null +# filter_countries: +# +materialized: table