-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
53 lines (53 loc) · 1.1 KB
/
wrangler.jsonc
File metadata and controls
53 lines (53 loc) · 1.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
48
49
50
51
52
53
/**
* For more details on how to configure Wrangler, refer to:
* https://developers.cloudflare.com/workers/wrangler/configuration/
*/
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "workflows-starter-template",
"main": "worker/index.ts",
"compatibility_date": "2025-10-08",
"assets": {
"directory": "./dist",
"not_found_handling": "single-page-application"
},
"observability": {
"enabled": true
},
/**
* Workflows
* Define Workflows to orchestrate multi-step processes
* https://developers.cloudflare.com/workflows/
*/
"workflows": [
{
"name": "my-workflow",
"binding": "MY_WORKFLOW",
"class_name": "MyWorkflow"
}
],
/**
* Durable Objects
* Used for WebSocket state management and real-time updates
* https://developers.cloudflare.com/durable-objects/
*/
"durable_objects": {
"bindings": [
{
"name": "WORKFLOW_STATUS",
"class_name": "WorkflowStatusDO"
}
]
},
/**
* Migrations
* Required for Durable Objects
*/
"migrations": [
{
"tag": "v1",
"new_sqlite_classes": ["WorkflowStatusDO"]
}
],
"upload_source_maps": true
}