Let's carry out the following steps to deploy our frontend to a staging environment:
- We'll start by provisioning another Azure App Service. So, let's go to the Azure portal in a browser and go to the App Services area and click the Add option.
- Enter an app name and choose the existing resource group. Remember that the app name we choose needs to be reflected in the Frontend setting of the appsettings.Staging.json file in our backend project. Remember also that the runtime stack should be .NET Core 3.0 and Windows should be the operating system. Click the Review + Create button and then the Create button to create the app service.
- Let's move to Visual Studio Code now and create a staging build by running the following ...