forked from lindsaymurphy4/course_advanced_dbt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dbt_project.yml
47 lines (37 loc) · 887 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
name: 'course_advanced_dbt'
version: '1.0.0'
config-version: 2
profile: 'course_advanced_dbt'
model-paths: ["models"]
analysis-paths: ["analyses"]
test-paths: ["tests"]
seed-paths: ["seeds"]
macro-paths: ["macros"]
snapshot-paths: ["snapshots"]
log-path: 'logs'
target-path: 'target'
packages-install-path: 'dbt_packages'
clean-targets:
- "target"
- "dbt_packages"
models:
course_advanced_dbt:
+materialized: view
+grants:
select: ['transformer', 'reporter']
staging:
+schema: staging
intermediate:
+schema: intermediate
marts:
core:
+schema: core_reporting
finance:
+schema: finance
product:
+schema: product
seeds:
dbt_project_evaluator:
dbt_project_evaluator_exceptions:
+enabled: false
# on-run-end: "{{ dbt_project_evaluator.print_dbt_project_evaluator_issues() }}"