The goals of this lab is to publish our application to Azure.
As with provisioning, publishing our Function App can be done in different ways. You can do it straight from our IDE if that supports Azure (see the prerequisites), via the Azure Functions CLI, or via a build & release pipeline.
Follow these instructions: docs.microsoft.com/en-us/azure/azure-functions/functions-develop-vs#publish-to-azure
Note that we should select to publish to an existing Function App resource if we provisioned one in the prevous lab.
Application settings in the local.settings.json
file are not published. Follow these instructions to manage our app settings from Visual Studio: docs.microsoft.com/en-us/azure/azure-functions/functions-develop-vs#function-app-settings
Follow these instructions: docs.microsoft.com/en-us/azure/azure-functions/functions-develop-vs-code#publish-to-azure
Application settings in the local.seetings.json
file are not published. Follow these instructions to manage our app settings from VS Code: docs.microsoft.com/en-us/azure/azure-functions/functions-develop-vs-code#application-settings-in-azure
Follow these instructions: docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#publish
Follow the instructions under the Managing and deploying Azure Function apps with Rider section at blog.jetbrains.com/dotnet/2019/05/09/building-azure-functions-sql-database-improvements-azure-toolkit-rider-2019-1/
Open the Azure portal, navigate to Application Insights and inspect how the Function App is performing.
Make a request to the Durable Functions HTTP management API to get the status of orchestrations which have been completed in the last 5 minutes.
An example request is available in get_orchestration_status.http
Continue to the next lab to explore additional features.