forked from kzzzr/mybi-dbt-showcase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdbt_project.yml
65 lines (53 loc) · 1.43 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
name: 'mybi_dbt_showcase'
version: '1.0.0'
config-version: 2
profile: 'mybi_dbt_showcase'
models:
mybi_dbt_core:
enabled: false
staging:
amocrm:
enabled: true
direct:
enabled: true
ga:
enabled: true
general:
enabled: true
mytarget:
enabled: true
mybi_dbt_showcase:
+materialized: table
intermediate:
+schema: intermediate
+tags: ["intermediate"]
marts:
+tags: ["marts"]
metrics:
dbt_metrics_default_calendar:
enabled: false
vars:
mybi_host: 'rc1a-uifqtk602qck1es3.mdb.yandexcloud.net'
mybi_port: 6432
mybi_database: 'mybi-ilmwayp'
mybi_user: 'guest-ilmwayp'
mybi_password: 'nAYIVOexUj6s'
mybi_schema: 'public'
mybi_dbt_core:
limit_data_days: 5
dbt_source_database: mybi
dbt_source_schema: mybi
account_id_amocrm: 46021
account_id_direct: 46105
account_id_ga: 45377
account_id_mytarget: 46637
model-paths: ["models"]
analysis-paths: ["analyses"]
test-paths: ["tests"]
seed-paths: ["seeds"]
macro-paths: ["macros"]
snapshot-paths: ["snapshots"]
target-path: "target" # directory which will store compiled SQL files
clean-targets: # directories to be removed by `dbt clean`
- "target"
- "dbt_packages"