-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathwrangler.json
More file actions
35 lines (35 loc) · 1.54 KB
/
wrangler.json
File metadata and controls
35 lines (35 loc) · 1.54 KB
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
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "validators-api-main",
"main": "dist/server/index.mjs",
"assets": { "directory": "dist/public" },
"account_id": "cf9baad7d68d7ee717f3339731e81dfb",
"compatibility_date": "2026-02-26",
"compatibility_flags": ["nodejs_compat"],
"observability": {
"enabled": true,
"logs": {
"enabled": true,
"invocation_logs": true
}
},
"triggers": { "crons": ["0 */12 * * *"] },
"vars": { "NUXT_PUBLIC_NIMIQ_NETWORK": "main-albatross" },
"d1_databases": [{ "binding": "DB", "database_id": "cc9f1d25-676b-4cb3-8af6-887e85a08baa", "database_name": "validators-api-mainnet" }],
"kv_namespaces": [{ "binding": "CACHE", "id": "4be4d10e6d3444eca6e7c02cdbcd275f" }],
"r2_buckets": [{ "binding": "BLOB", "bucket_name": "validators-api-mainnet" }],
"env": {
"testnet": {
"name": "validators-api-test",
"main": "dist/server/index.mjs",
"assets": { "directory": "dist/public" },
"compatibility_flags": ["nodejs_compat"],
"observability": { "enabled": true, "logs": { "enabled": true, "invocation_logs": true } },
"triggers": { "crons": ["0 */12 * * *"] },
"vars": { "NUXT_PUBLIC_NIMIQ_NETWORK": "test-albatross" },
"d1_databases": [{ "binding": "DB", "database_id": "de14e353-5028-4e52-a383-a9cc200d960d", "database_name": "validators-api-testnet" }],
"kv_namespaces": [{ "binding": "CACHE", "id": "90c1598af92a4e72a767e6601090f014" }],
"r2_buckets": [{ "binding": "BLOB", "bucket_name": "validators-api-testnet" }]
}
}
}