forked from dbt-labs/snowplow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dbt_project.yml
33 lines (30 loc) · 921 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
#settings specifically for this models directory
#config other dbt settings within ~/.dbt/profiles.yml
name: 'snowplow'
version: '0.0.1'
source-paths: ["models"]
target-path: "target"
clean-targets: ["target"]
test-paths: ["test"]
analysis-paths: ["analysis"]
data-paths: ["data"]
macro-paths: ["macros"]
models:
snowplow:
base:
materialized: ephemeral
optional:
enabled: false
page_views:
optional:
enabled: false
vars:
#'snowplow:events': TABLE OR {{ REF() }}
#'snowplow:context:web_page': TABLE OR {{ REF() }}
#'snowplow:context:performance_timing': TABLE OR {{ REF() }} or FALSE
#'snowplow:context:useragent': TABLE OR {{ REF() }} or FALSE
'snowplow:timezone': 'America/New_York'
'snowplow:page_ping_frequency': 30
'snowplow:app_ids': []
'snowplow:pass_through_columns': []
'snowplow:page_view_lookback_days': 1