-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdbt_project.yml
More file actions
32 lines (26 loc) · 877 Bytes
/
dbt_project.yml
File metadata and controls
32 lines (26 loc) · 877 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
name: 'segment'
version: '0.0.1'
# This setting configures which "profile" dbt uses for this project. Profiles contain
# database connection information, and should be configured in the ~/.dbt/profiles.yml file
profile: 'default' # <-- change this as necessary for your setup.
source-paths: ["models"]
analysis-paths: ["analysis"]
test-paths: ["tests"]
data-paths: ["data"]
target-path: "target" # directory which will store compiled SQL files
clean-targets: # directories to be removed by `dbt clean`
- "target"
- "dbt_modules"
models:
segment:
enable: true
materialized: view
utility_models:
materialized: view
base:
materialized: view
vars:
"base.pages" : "segment.pages"
"base.tracks" : "segment.tracks"
"base.users" : "segment.users"
"base.identifies" : "segment.identifies"