Publishing to Staging
Learn to publish our frontend to the staging environment on Azure.
We'll cover the following...
Deploy frontend to Azure staging environment
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 “Create” option.
Press + to interact
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 theappsettings.Staging.json
file in our backend project. Remember also that the runtime stack should be.NET 7
and that Windows should be the operating system. Click the “Review + create” button and then the “Create” ...