๐Ÿ“ฆ pgoslatara / dbt-beyond-the-basics

๐Ÿ“„ dbt_project.yml ยท 69 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69name: 'beyond_basics'
version: '1.0.0'
config-version: 2

profile: 'beyond_basics'

model-paths: ["models"]
analysis-paths: ["analyses"]
test-paths: ["tests"]
seed-paths: ["seeds"]
macro-paths: ["macros"]
snapshot-paths: ["snapshots"]
clean-targets:
  - "target"
  - "dbt_packages"

require-dbt-version: [">=1.11.0", "<1.12.0"]

models:
  +labels:
    created_by: dbt
  beyond_basics:
    +persist_docs:
      relation: true
      columns: true
    intermediate:
      finance:
        +schema: intermediate_finance
        +tags: ['finance']
      +materialized: view
      +schema: intermediate
      +tags: ['intermediate']
    marts:
      crypto:
        +schema: marts_crypto
        +tags: ['crypto']
      finance:
        +schema: marts_finance
        +tags: ['finance']
      +materialized: table
      +schema: marts
      +tags: ['marts']
    staging:
      public_datasets:
        +schema: staging_public_datasets
        +tags: ['public_datasets']
      jaffle_shop:
        +schema: staging_jaffle_shop
        +tags: ['jaffle_shop']
      stripe:
        +schema: staging_stripe
        +tags: ['stripe']
      +materialized: view
      +schema: staging
      +tags: ['staging']


seeds:
  beyond_basics:
    jaffle_shop:
      +schema: seeds_jaffle_shop
      +tags: ['jaffle_shop']
    stripe:
      +schema: seeds_stripe
      +tags: ['stripe']
    +tags: ["seeds"]
flags:
  require_generic_test_arguments_property: true