Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How Console in New Windows Azure Portal Works?

In the new Windows Azure Portal, how does the "Console" Window works? What really happens behind the scenes? I am curious to know how it works internally. (I can't find that out for myself since I don't have an Azure account :-( )

http://assets.andrewconnell.com/media/Default/Misc/AzurePortalManager04.pngAzure Management Portal, Console Blade

like image 653
Aniket Inge Avatar asked Dec 24 '22 23:12

Aniket Inge


1 Answers

I actually made this console as my internship project while at Microsoft. It was made before the xplat-cli was available, but it's still very simple and actually uses the Kudu service. Kudu is the engine behind git/hg deployments, WebJobs, and various other features in Azure Web Sites. More information on Kudu here: https://github.com/projectkudu/kudu/

When your web application is created on azure, Kudu stands up a scm website for your web application with the end point yoursite.scm.azurewebsites.net. The console then takes commands that you give it, calls Kudu's REST API using the scm website as the endpoint, and then displays you the output in the console.

like image 118
Asher Garland Avatar answered Jan 13 '23 13:01

Asher Garland