-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdbt_project.yml
More file actions
48 lines (36 loc) · 881 Bytes
/
Copy pathdbt_project.yml
File metadata and controls
48 lines (36 loc) · 881 Bytes
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
name: dbt_analytics_engineering
version: 1.0.0
config-version: 2
profile: dbt_analytics_engineering
require-dbt-version: [">=1.8.0", "<2.0.0"]
flags:
dbt_sqlserver_use_native_string_types: true
dbt_sqlserver_use_default_schema_concat: true
model-paths: ["models"]
analysis-paths: ["analyses"]
test-paths: ["tests"]
seed-paths: ["seeds"]
macro-paths: ["macros"]
snapshot-paths: ["snapshots"]
clean-targets:
- target
- dbt_packages
vars:
project_start_date: "2020-01-01"
models:
dbt_analytics_engineering:
staging:
+materialized: view
+tags: ["staging", "bronze"]
intermediate:
+materialized: table
+tags: ["intermediate", "silver"]
marts:
+materialized: table
+tags: ["marts", "gold"]
seeds:
dbt_analytics_engineering:
+schema: seeds
snapshots:
dbt_analytics_engineering:
+target_schema: snapshots