70bf21e064
Deploy (to testing) and Test Playground Preview Worker / Deploy Playground Preview Worker (testing) (push) Has been skipped
Deploy Workers Shared Staging / Deploy Workers Shared Staging (push) Failing after 0s
Prerelease / build (push) Has been skipped
Handle Changesets / Handle Changesets (push) Has been cancelled
Semgrep OSS scan / semgrep-oss (push) Has been cancelled
29 lines
665 B
JSON
29 lines
665 B
JSON
{
|
|
"name": "worker-app",
|
|
"main": "src/index.js",
|
|
"compatibility_date": "2022-03-31",
|
|
"d1_databases": [
|
|
{
|
|
"binding": "DB", // i.e. available in your Worker on env.DB
|
|
"database_name": "UPDATE_THIS_FOR_REMOTE_USE",
|
|
"preview_database_id": "UPDATE_THIS_FOR_REMOTE_USE",
|
|
"database_id": "UPDATE_THIS_FOR_REMOTE_USE",
|
|
},
|
|
],
|
|
"migrations": [
|
|
{
|
|
"tag": "v1", // Should be unique for each entry
|
|
"new_classes": ["DurableObjectExample"], // Array of new classes
|
|
},
|
|
],
|
|
"durable_objects": {
|
|
"bindings": [
|
|
{
|
|
// Binding to our DurableObjectExample class
|
|
"name": "EXAMPLE_CLASS",
|
|
"class_name": "DurableObjectExample",
|
|
},
|
|
],
|
|
},
|
|
}
|