๐Ÿ“ฆ anna-geller / dbt-jaffle-shop-template

๐Ÿ“„ dbt_project.yml ยท 25 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25# ======
# Project Details
# ======
name: jaffle_shop
version: 0.1
config-version: 2
profile: dbt_dwh_models
require-dbt-version: [">=1.0.0", "<2.0.0"]

# ======
# File Path Configs
# ======
model-paths: [models]
analysis-paths: [analysis]
test-paths: [tests]
macro-paths: [macros]
target-path: target

models:
  jaffle_shop:
    marts:
      materialized: table
    staging:
      materialized: view