-
Notifications
You must be signed in to change notification settings - Fork 5
/
dbt_project.yml
68 lines (61 loc) · 1.4 KB
/
dbt_project.yml
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
name: '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"]
target-path: "target"
clean-targets:
- "target"
- "dbt_packages"
require-dbt-version: [">=1.8.0", "<1.9.0"]
models:
+labels:
created_by: dbt
beyond_basics:
+persist_docs:
relation: true
columns: true
intermediate:
materialized: view
schema: intermediate
tags: ['intermediate']
finance:
schema: intermediate_finance
tags: ['finance']
marts:
materialized: table
schema: marts
tags: ['marts']
crypto:
schema: marts_crypto
tags: ['crypto']
finance:
schema: marts_finance
tags: ['finance']
staging:
materialized: view
schema: staging
tags: ['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']
seeds:
beyond_basics:
tags: ["seeds"]
jaffle_shop:
schema: seeds_jaffle_shop
tags: ['jaffle_shop']
stripe:
schema: seeds_stripe
tags: ['stripe']