-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdbt_project.yml
53 lines (45 loc) · 905 Bytes
/
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
name: 'dbt_af_project'
config-version: 2
version: '0.1'
profile: 'default'
model-paths: [
"jaffle_shop/dbt/models",
"advanced_jaffle_shop/dbt/models"
]
seed-paths: [
"jaffle_shop/dbt/seeds",
"advanced_jaffle_shop/dbt/seeds"
]
test-paths: [
"jaffle_shop/dbt/tests",
"advanced_jaffle_shop/dbt/tests"
]
analysis-paths: [
"jaffle_shop/dbt/analysis",
"advanced_jaffle_shop/dbt/analysis"
]
macro-paths: [
"macros",
"jaffle_shop/dbt/macros",
"advanced_jaffle_shop/dbt/macros"
]
target-path: "target"
clean-targets:
- "target"
- "dbt_packages"
- "logs"
require-dbt-version: [ ">=1.0.0", "<2.0.0" ]
models:
dbt_af_project:
materialized: table
staging:
materialized: view
sql_cluster: "dev"
daily_sql_cluster: "dev"
py_cluster: "dev"
bf_cluster: "dev"
seeds:
sql_cluster: "dev"
daily_sql_cluster: "dev"
py_cluster: "dev"
bf_cluster: "dev"