-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdbt_project.yml
178 lines (172 loc) · 5 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
# Name your project! Project names should contain only lowercase characters
# and underscores. A good package name should reflect your organization's
# name or the intended use of these models
name: "artemis_dbt"
version: "1.0.0"
config-version: 2
# This setting configures which "profile" dbt uses for this project.
profile: "snowflake-dagster"
# These configurations specify where dbt should look for different types of files.
# The `source-paths` config, for example, states that models in this project can be
# found in the "models/" directory. You probably won't need to change these!
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"
# Configuring models
# Full documentation: https://docs.getdbt.com/docs/configuring-models
# In this example config, we tell dbt to build all models in the example/ directory
# as tables. These settings can be overridden in the individual model files
# using the `{{ config(...) }}` macro.
models:
artemis_dbt:
metrics:
contracts:
+snowflake_warehouse: "DAILY_L1"
defillama:
+snowflake_warehouse: "DAILY_DEFILLAMA"
bam_models:
+snowflake_warehouse: "DAILY_BAM"
staging:
acala:
+snowflake_warehouse: "ACALA"
across:
+snowflake_warehouse: "ACROSS"
akash:
+snowflake_warehouse: "AKASH"
aptos:
+snowflake_warehouse: "APTOS"
arbitrum:
+snowflake_warehouse: "ARBITRUM"
avalanche:
+snowflake_warehouse: "AVALANCHE"
axelar:
+snowflake_warehouse: "AXELAR"
base:
+snowflake_warehouse: "BASE"
beam:
+snowflake_warehouse: "BEAM"
benqi:
+snowflake_warehouse: "BENQI_FINANCE"
bitcoin:
+snowflake_warehouse: "BITCOIN"
blast:
+snowflake_warehouse: "BLAST"
blur:
+snowflake_warehouse: "BLUR"
cardano:
+snowflake_warehouse: "CARDANO"
cctp:
+snowflake_warehouse: "CCTP"
celestia:
+snowflake_warehouse: "CELESTIA"
celo:
+snowflake_warehouse: "CELO"
coinbase:
+snowflake_warehouse: "COINBASE"
compound:
+snowflake_warehouse: "COMPOUND"
cosmoshub:
+snowflake_warehouse: "COSMOSHUB"
curve:
+snowflake_warehouse: "CURVE"
dexalot:
+snowflake_warehouse: "DEXALOT"
dfk:
+snowflake_warehouse: "DFK"
ethereum:
+snowflake_warehouse: "ETHEREUM"
fantom:
+snowflake_warehouse: "FANTOM"
flow:
+snowflake_warehouse: "FLOW"
frax:
+snowflake_warehouse: "FRAX"
fuse:
+snowflake_warehouse: "FUSE"
gnosis:
+snowflake_warehouse: "GNOSIS"
immutable_x:
+snowflake_warehouse: "IMMUTABLE_X"
injective:
+snowflake_warehouse: "INJECTIVE"
lido:
+snowflake_warehouse: "LIDO"
linea:
+snowflake_warehouse: "LINEA"
mantle:
+snowflake_warehouse: "mantle"
moonwell:
+snowflake_warehouse: "MOONWELL"
multiversx:
+snowflake_warehouse: "MULTIVERSX"
optimism:
+snowflake_warehouse: "OPTIMISM"
osmosis:
+snowflake_warehouse: "OSMOSIS"
pancakeswap:
+snowflake_warehouse: "PANCAKESWAP_SM"
pendle:
+snowflake_warehouse: "PENDLE"
polkadot:
+snowflake_warehouse: "POLKADOT"
polygon:
+snowflake_warehouse: "POLYGON"
near:
+snowflake_warehouse: "NEAR"
quickswap:
+snowflake_warehouse: "QUICKSWAP"
radiant:
+snowflake_warehouse: "RADIANT"
rainbow_bridge:
+snowflake_warehouse: "RAINBOW_BRIDGE"
rocketpool:
+snowflake_warehouse: "ROCKETPOOL"
scroll:
+snowflake_warehouse: "SCROLL"
seamless:
+snowflake_warehouse: "SEAMLESSPROTOCOL"
sei:
+snowflake_warehouse: "SEI"
solana:
+snowflake_warehouse: "SOLANA"
sonne:
+snowflake_warehouse: "SONNE_FINANCE"
spark:
+snowflake_warehouse: "SPARK"
stacks:
+snowflake_warehouse: "STACKS"
stader:
+snowflake_warehouse: "STADER"
stakewise:
+snowflake_warehouse: "STAKEWISE"
stride:
+snowflake_warehouse: "STRIDE"
sushiswap:
+snowflake_warehouse: "SUSHISWAP_SM"
ton:
+snowflake_warehouse: "TON"
trader_joe:
+snowflake_warehouse: "TRADER_JOE"
tron:
+snowflake_warehouse: "TRON"
uniswap:
+snowflake_warehouse: "UNISWAP_SM"
uwu_lend:
+snowflake_warehouse: "UWULEND"
venus:
+snowflake_warehouse: "VENUS"
zcash:
+snowflake_warehouse: "ZCASH"
zksync:
+snowflake_warehouse: "ZKSYNC"
zora:
+snowflake_warehouse: "ZORA"
vars:
dbt_date:time_zone: "Etc/UTC"