It’s recommended that you develop your functions locally and publish to a function app in Azure : Develop and run Azure Functions locally | Microsoft Learn
...
Panel | ||||||
---|---|---|---|---|---|---|
| ||||||
Don't mix local development with portal development in the same function app. When you create and publish functions from a local project, you won't be able to maintain or modify project code in the portal. |
Local project files
...
Code Block | ||
---|---|---|
| ||
{ "IsEncrypted": false, "Values": { "FUNCTIONS_WORKER_RUNTIME": "<language worker>", "AzureWebJobsStorage": "<connection-string>", "MyBindingConnection": "<binding-connection-string>", "AzureWebJobs.HttpExample.Disabled": "true" }, "Host": { "LocalHttpPort": 7071, "CORS": "*", "CORSCredentials": false }, "ConnectionStrings": { "SQLConnectionString": "<sqlclient-connection-string>" } } |
...