generated from slalom-ggp/dataops-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdbt_project.yml
43 lines (37 loc) · 867 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
version: '1.0'
name: my_project
profile: spark-local
# 1. Seed Data (raw CSV files):
data-paths:
- data/transforms/_raw_
seeds:
my_project:
list_integers:
enabled: true
column_types:
integer: bigint
# 2. Model Files (SQL transforms and YAML configs):
source-paths:
- data/transforms
models:
my_project:
dummy_schema_sample:
enabled: false
materialized: table
linked_in_v1:
enabled: false
materialized: table
linked_in_v2:
enabled: false
materialized: table
# 3. SQL Tests (queries that expect zero results)
test-paths:
- data/tests/sql
# 4. Downstream Analyses (queries should compile but won't be executed)
analysis-paths:
- data/analysis/sql
- data/tests/sql
# 5. Output Directory (for compilation and build results)
target-path: .output/dbt
clean-targets:
- .output/dbt