-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
47 lines (47 loc) · 1 KB
/
Copy pathwrangler.jsonc
File metadata and controls
47 lines (47 loc) · 1 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
36
37
38
39
40
41
42
43
44
45
46
47
{
"$schema": "./node_modules/wrangler/config-schema.json",
"name": "pulso-colombia",
"main": "worker/index.ts",
"workers_dev": true,
"preview_urls": false,
"compatibility_date": "2026-08-13",
"compatibility_flags": ["nodejs_compat"],
"assets": {
"directory": "./dist",
"binding": "ASSETS",
"not_found_handling": "single-page-application",
"run_worker_first": ["/api/*"]
},
"triggers": {
"crons": ["17 8 * * *"]
},
"d1_databases": [
{
"binding": "DB",
"database_name": "pulso-colombia",
"database_id": "7f055ea3-c6dc-4ce1-989f-a5e45a8f92bf",
"migrations_dir": "migrations"
}
],
"ratelimits": [
{
"name": "API_RATE_LIMITER",
"namespace_id": "1001",
"simple": {
"limit": 1200,
"period": 60
}
},
{
"name": "WRITE_RATE_LIMITER",
"namespace_id": "1002",
"simple": {
"limit": 120,
"period": 60
}
}
],
"vars": {
"PRIMARY_EVENT_ID": "us6000tjl2"
}
}