Understanding continuous delivery with Azure DevOps
Once every single commit of your application is built, and this code is tested with both unit and functional tests, you may also want to deploy it continuously. Doing this is not just a matter of configuring the tool. As a software architect, you need to be sure that the team and the process are ready to go to this step. But let's check how to enable this first scenario of deployment using the book use case.
Deploying our package-management application with Azure Pipelines
In this section, we will configure an automatic deployment to the Azure App Service platform for the DevOps project that we defined in the use case at the end of Chapter 18, Testing Your Code with Unit Test Cases and TDD. Azure DevOps can also automatically create a new web app, but to prevent configuration errors (which might consume all your free credit), we will create it manually and let Azure DevOps just deploy the application. All the required...