Azure Developer Tour Toronto April 3, 2018

It was impressive to create app service very easy way, deploy directly from your local git repository!
- Create app service in Azure dashboard

- 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

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

