-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdbt_project.yml
88 lines (75 loc) · 2 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
name: 'mybi_dbt_core'
version: '1.0.0'
config-version: 2
require-dbt-version: [">=1.2.0", "<2.0.0"]
profile: 'mybi_dbt_core'
model-paths: ["models"]
test-paths: ["tests"]
seed-paths: ["data"]
macro-paths: ["macros"]
snapshot-paths: ["snapshots"]
target-path: "target"
clean-targets:
- "target"
- "dbt_packages"
quoting:
database: True
schema: True
identifier: True
vars:
limit_data_days: 5
# dbt_source_database: null
# dbt_source_schema: null
account_id_ads: null
account_id_amocrm: null
account_id_bitrix24: null
account_id_currency: null
account_id_direct: null
account_id_facebook: null
account_id_ga: null
account_id_gaw: null
account_id_metrika: null
account_id_mytarget: null
account_id_vkontakte: null
caption_ads: 'google_ads'
caption_amocrm: 'amocrm'
caption_bitrix24: 'bitrix24'
caption_direct: 'yandex_direct'
caption_facebook: 'facebook'
caption_ga: 'google_analytics'
caption_gaw: 'google_adwords'
caption_metrika: 'yandex_metrika'
caption_mytarget: 'mytarget'
caption_vkontakte: 'vkontakte'
models:
mybi_dbt_core:
+materialized: table
+enabled: true
staging:
+schema: staging
+tags: ["staging"]
ads:
+tags: ["ads"]
amocrm:
+tags: ["amocrm"]
bitrix24:
+tags: ["bitrix24"]
currencies:
+tags: ["currencies"]
direct:
+tags: ["direct"]
facebook:
+tags: ["facebook"]
ga:
+tags: ["ga"]
gaw:
+tags: ["gaw"]
general:
+tags: ["general"]
metrika:
+tags: ["metrika"]
mytarget:
+tags: ["mytarget"]
vkontakte:
+enabled: false
+tags: ["vkontakte"]