Cloudflare Docs
Cloudflare for Platforms
Cloudflare for Platforms
Visit Cloudflare for Platforms on GitHub
Set theme to dark (⇧+D)

Multipart uploads

To perform multipart uploads, include a similar object in your metadata’s bindings property:

metadata.json
{
"main_module": "main.js", // should correspond to the Worker filename
"services": [
{
"binding": "some_service_binding",
"service": "some_service",
"environment": "production"
}
],
"bindings": [
{
"name": "some_other_binding",
"type": "binding_type",
"example_param": "param"
}
]
}

The main.js content will look like this:

main.js
export default {
fetch(request) {
return new Response('Hello World');
},
};