Saturday, November 16, 2019

Azure Quick tips

1. how to go to the specific folder and list items inside the folder in Azure PowerShell ?

 cd ~/yourfolderPath

 the type ls to show the list content






2. How to access Kudu Console for API or web site host in Azure?

I have a sample api URL

https://danfuncappapi.azurewebsites.net/



we can access the Kudue console by adding .scm after the api name

https://danfuncappapi.SCM.azurewebsites.net/


here is the Kudu Console for my sample API








3. We can use the Microsoft azure storage explorer to visualize the content in the azure

you can download a copy of the Azure storage explorer from the link below

https://azure.microsoft.com/en-us/features/storage-explorer/

here is the screen shot of the content under my azure account.




















4. How to check the Package version from Azure PowerShell window?

type pip3 freeze  will show you the list of package with version number in the powershell window















5. how to launch a Code Editor within Azure CLI windows

it is simple and straight. exactly like launching visual studio code in windows CMD

type Code . then the code editor will be shown
















To be continue ...........................