-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdbt_project.yml
More file actions
37 lines (31 loc) · 890 Bytes
/
dbt_project.yml
File metadata and controls
37 lines (31 loc) · 890 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
name: 'taxi_rides_ny'
version: '1.0.0'
# Require a specific dbt version for reproducibility
require-dbt-version: [">=1.7.0", "<2.0.0"]
# This setting configures which "profile" dbt uses for this project.
profile: 'taxi_rides_ny'
# These configurations specify where dbt should look for different types of files.
model-paths: ["models"]
analysis-paths: ["analyses"]
test-paths: ["tests"]
seed-paths: ["seeds"]
macro-paths: ["macros"]
snapshot-paths: ["snapshots"]
clean-targets:
- "target"
- "dbt_packages"
# Project-level variables
vars:
# Date range for dev environment sampling
dev_start_date: '2019-01-01'
dev_end_date: '2019-02-01'
# Configuring models
# Full documentation: https://docs.getdbt.com/docs/configuring-models
models:
taxi_rides_ny:
staging:
+materialized: view
intermediate:
+materialized: table
marts:
+materialized: table