Service Integrations with Local Entrypoints
Use local services when the gateway and the handler should ship together in one worker project.
When to use this
What this does not do
Repo-grounded example
{
"services": [
{ "alias": "worker1", "entrypoint": "./services/endpoint1" }
],
"paths": [
{
"method": "GET",
"path": "/service",
"integration": {
"type": "service",
"binding": "worker1"
}
}
]
}Troubleshooting
Related docs
Last updated