https://github.com/mrpaulblack/azurefunctionexample
Contains examples for isloated dotnet 8 HttpTrigger azure function
https://github.com/mrpaulblack/azurefunctionexample
azure azure-function dotnet8
Last synced: 9 months ago
JSON representation
Contains examples for isloated dotnet 8 HttpTrigger azure function
- Host: GitHub
- URL: https://github.com/mrpaulblack/azurefunctionexample
- Owner: mrpaulblack
- Created: 2023-12-06T21:04:15.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-09T08:39:34.000Z (about 1 year ago)
- Last Synced: 2025-03-25T04:28:02.921Z (10 months ago)
- Topics: azure, azure-function, dotnet8
- Language: C#
- Homepage:
- Size: 19.5 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AzureFunctionExample
Basic example showcasing an azure function HTTP trigger with dotnet 8 using the isolated worker model.
### Setup
* create local development file `Function/local.settings.json`:
```json
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "UseDevelopmentStorage=true",
"FUNCTIONS_WORKER_RUNTIME": "dotnet-isolated"
}
}
```
### Useful Links
* HTTP Trigger in isolated worker model: https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-http-webhook-trigger?tabs=python-v2%2Cisolated-process%2Cnodejs-v4%2Cfunctionsv2&pivots=programming-language-csharp
* Setting up OpenAPI docs generation: https://github.com/Azure/azure-functions-openapi-extension/blob/main/docs/enable-open-api-endpoints-out-of-proc.md
* Azure Storage Explorer: https://azure.microsoft.com/en-us/products/storage/storage-explorer/ (On Linux flatpak can be used: https://flathub.org/apps/com.microsoft.AzureStorageExplorer)