Search This Blog

2021-04-17

My Azure Study Note 06 - Azure icons, App Service and debugging tool

Download Azure Icons from

https://docs.microsoft.com/en-us/azure/architecture/icons/

App Service Types

  • Web Apps
  • Web API
  • Web Jobs(batch processes)
Its a PAAS

App Service Tires
Free, Basic, Standard, Premium, ISolated

https://azure.microsoft.com/en-in/pricing/details/app-service/windows/

App Service supports Auto scale based on the Metrics

Deploy code in App Service from VS Code

1. Create a app service in azure portal , Publish= Code, Runtime Stack= .net core 3.1, SKU= Free F1
2. In VS Code, publish the code
dotnet publish -o publish

Right click on Publish folder and selecr "Deploy to web App" and sign in and choose the app service

Note : In VS Code , install the extensions - Azure Accounts, Azure App Service, Azure Resources,
C#

3. Browse website
4. In Azure portal we have some useful feature for debugging like

Development Tool -> App Service Editor
Development Tool -> Console

5. Scale up to change the plan from free to paid, if required

No comments: