-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
50 lines (50 loc) · 853 Bytes
/
wrangler.jsonc
File metadata and controls
50 lines (50 loc) · 853 Bytes
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
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "globalping-mcp-server",
"main": "src/index.ts",
"compatibility_flags": ["nodejs_compat_v2"],
"placement": {
"mode": "smart"
},
"routes": [
{
"pattern": "mcp.globalping.dev",
"custom_domain": true
}
],
"compatibility_date": "2025-03-10",
"durable_objects": {
"bindings": [
{
"class_name": "GlobalpingMCP",
"name": "globalping_mcp_object"
}
]
},
"migrations": [
{
"tag": "v1",
"new_sqlite_classes": ["GlobalpingMCP"]
},
{
"tag": "v2",
"renamed_classes": [
{
"from": "GlobalpingMCP",
"to": "GlobalpingMCP"
}
]
}
],
"kv_namespaces": [
{
"binding": "OAUTH_KV",
"id": "548283d6cfa344339e00d74b353069be"
}
],
"observability": {
"enabled": true
},
"preview_urls": false,
"workers_dev": true
}