How do you configure custom handlers in Azure Functions?
Add "WORKER_RUNTIME": "node" in local.settings.json.
"WORKER_RUNTIME": "node"
local.settings.json
Set "WORKER_RUNTIME": "custom" in local.settings.json.
"WORKER_RUNTIME": "custom"
Modify local.settings.json to include the customHandler property with the executable path and arguments.
customHandler
Set "FUNCTIONS_RUNTIME": "custom" in local.settings.json.
"FUNCTIONS_RUNTIME": "custom"
Add "FUNCTIONS_RUNTIME": "node" in host.json.
"FUNCTIONS_RUNTIME": "node"
host.json
Set "FUNCTIONS_WORKER_RUNTIME": "custom" in host.json.
"FUNCTIONS_WORKER_RUNTIME": "custom"
Modify host.json to include the customHandler property with the executable path and arguments.
Use Azure Portal to set the custom handler settings.
Add "FUNCTIONS_WORKER_RUNTIME": "node" in local.settings.json.
"FUNCTIONS_WORKER_RUNTIME": "node"
Add "FUNCTIONS_RUNTIME": "node" in local.settings.json.
Add "FUNCTIONS_WORKER_RUNTIME": "node" in host.json.
Set "WORKER_RUNTIME": "custom" in host.json.
Set "FUNCTIONS_WORKER_RUNTIME": "custom" in local.settings.json.
Add "WORKER_RUNTIME": "node" in host.json.
Set "FUNCTIONS_RUNTIME": "custom" in host.json.