-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwrangler.json
54 lines (54 loc) · 839 Bytes
/
wrangler.json
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
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "shopflare",
"compatibility_date": "2024-11-01",
"main": "./server.ts",
"analytics_engine_datasets": [
{
"binding": "WEB_VITALS",
"dataset": "SHOPFLARE_WEB_VITALS"
}
],
"assets": {
"binding": "ASSETS",
"directory": "./dist/client"
},
"dev": {
"ip": "0.0.0.0",
"port": 8080
},
"kv_namespaces": [
{
"binding": "SESSION_STORAGE",
"id": "?"
}
],
"logpush": true,
"observability": {
"enabled": true,
"logs": {
"invocation_logs": false
}
},
"placement": {
"mode": "smart"
},
"queues": {
"consumers": [
{
"queue": "shopflare"
}
],
"producers": [
{
"queue": "shopflare",
"binding": "WEBHOOK_QUEUE"
}
]
},
"vars": {
"NODE_VERSION": 22,
"SHOPIFY_API_KEY": "",
"SHOPIFY_APP_URL": ""
}
}