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
66 lines
1.1 KiB
JSON
66 lines
1.1 KiB
JSON
{
|
|
"$schema": "node_modules/wrangler/config-schema.json",
|
|
"name": "worker-w-resources",
|
|
"main": "src/index.ts",
|
|
"compatibility_date": "2023-05-04",
|
|
"r2_buckets": [
|
|
{
|
|
"bucket_name": "my-bucket",
|
|
"binding": "BUCKET",
|
|
},
|
|
{ "bucket_name": "bucket-b", "binding": "BUCKET_B" },
|
|
],
|
|
"kv_namespaces": [
|
|
{
|
|
"binding": "KV",
|
|
},
|
|
{
|
|
"binding": "KV_WITH_ID",
|
|
"id": "some-kv-id",
|
|
},
|
|
{
|
|
"binding": "KV_B",
|
|
"id": "worker-b-kv-id",
|
|
},
|
|
],
|
|
"d1_databases": [
|
|
{
|
|
"binding": "DB",
|
|
},
|
|
{
|
|
"binding": "BACKUP_DB",
|
|
"database_id": "some-db-id",
|
|
},
|
|
{
|
|
"binding": "DB_B",
|
|
"database_id": "worker-b-db-id",
|
|
},
|
|
],
|
|
"workflows": [
|
|
{
|
|
"binding": "MY_WORKFLOW",
|
|
"class_name": "MyWorkflow",
|
|
"name": "my-workflow",
|
|
},
|
|
],
|
|
"durable_objects": {
|
|
"bindings": [
|
|
{
|
|
"name": "DO",
|
|
"class_name": "MyDurableObject",
|
|
},
|
|
{
|
|
"name": "DO_B",
|
|
"class_name": "WorkerBDurableObject",
|
|
"script_name": "worker-b",
|
|
},
|
|
],
|
|
},
|
|
"migrations": [
|
|
{
|
|
"new_sqlite_classes": ["MyDurableObject"],
|
|
"tag": "v1",
|
|
},
|
|
],
|
|
}
|