Azure Developer Tour

in #cloud6 years ago

Azure Developer Tour Toronto April 3, 2018

Screen Shot 2018-04-02 at 7.57.16 PM.jpg
https://developer.microsoft.com/en-us/advocates/azure-developer-tour-2018/?WT.mc_id=azuredevtour-azuretourusah12018-prashant

#Azure

IMG_0859.jpg

It was impressive to create app service very easy way, deploy directly from your local git repository!

  • Create app service in Azure dashboard

Screen Shot 2018-04-03 at 10.10.31 AM.jpg

  • Write simple node.js application
var http = require('http');
  
var server = http.createServer(function(request, response) {

    response.writeHead(200, {"Content-Type": "text/plain"});
    response.end("Hello Toronto!");

});

var port = process.env.PORT || 1337;
server.listen(port);

console.log("Server running at http://localhost:%d", port);
  • Push source code via git
$ git remote add origin https://[email protected]:443/torontoDemo.git
$ git push
$ git push origin master
  • Check the app service

Screen Shot 2018-04-03 at 10.22.21 AM.jpg

Another impressive presentation was about AI and Azure Machine Learning Workbench, you can try it at https://studio.azureml.net/

It has nice visualizer.

IMG_0910.jpg

Coin Marketplace

STEEM 0.19
TRX 0.14
JST 0.030
BTC 62641.44
ETH 3343.87
USDT 1.00
SBD 2.47