Coder Social home page Coder Social logo

techsummit2016's Introduction

Microsoft Technical Summit 2016 - Sample

Introduction

At Microsoft Germany's Technical Summit 2016, I do a session about using the cloud in web development project. This repository contains the sample code I use during the session.

The sample contains a RESTful web API implemented with OWIN/Katana in .NET 4.6.1. I could have used .NET Core for the web API, too. However, Visual Studio and VSTS tooling is not final and polished yet. The extra steps necessary for a .NET Core version would lead to exceeding the amount of time I have for my session. For the general message of the session, it does not matter whether I use OWIN or ASP.NET Core. Therefore, I decided to use the "old" .NET version.

The RESTful web API uses a library with Azure-related helper functions. I create a NuGet package containing the library. The web API project references this package.

Next, I created automated tests for the server code. They use OWIN self-hosting and MEF for dependency injection to test the web API. To not just demo unit testing, I additionally added a simple web and load test.

Last but not least, this sample contains a simple Angular 2 web client. It calls the web API and displays its result.

Step 1: Feeds

Web development teams need to share components. In .NET we use NuGet for that, in web client development NPM. VSTS can offer NuGet and NPM feeds that teams can use. It is no longer necessary to manually setup and configure your own NuGet or NPM servers.

  • Code walkthrough of Shop.AzureUtilities
  • Show prepared build process in VSTS
    • Show connection to GitHub
  • Add NuGet creation step to build process (speak about versioning)

Package Creation Step

  • Create a new feed in VSTS (use it as an example for speaking about NuGet and NPM feed support in VSTS)
  • Create release management for publishing the created NuGet package into the new feed

Publishing NuGet package to feed

  • Create release and show how NuGet package is published in VSTS
  • Open web API project and add package from VSTS feed
  • Show how new feed is referenced in nuget.config

Step 2: Handling Secrets

Nearly every web application needs to handle secrets. Examples are certificates, encryption keys, connection strings, etc. Azure Key Vault is a great place to securely store such secrets and if necessary encrypt/decrypt data.

Step 3: .NET Build and Test Automation

VSTS contains a powerful build system for .NET applications. It also offers hosted build agents for CI. It is not longer necessary to manually install TFS or setup build agents.

  • Code walkthrough of Shop.WebApi
  • Create new build process for web API project
    • Add MSBuild arguments triggering creation of web deploy package: /p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation="$(build.stagingDirectory)"

Build Web API with Web Deploy Package

NuGet Restore with Config

Test Web API

  • Speak about general capabilities of VSTS build in this context
  • Mention examples (e.g. SauceLabs, Xamarin Test Cloud) for using cloud services for testing clients on different devices and platforms
  • Trigger build by checking in code

Step 4: Deployment Automation to Azure App Service

Azure App Service is a great PaaS offering for running web apps and web APIs. It is fully managed. VSTS release management is nicely integrated with Azure App Service. No need to setup and maintain custom web servers or deploy software manually.

  • Quick overview Azure App Service (prepared)
    • Mention settings
    • Mention deployment slots (especially the test slot used in this sample)
  • Create release management for publishing the created web deploy package to Azure App Service

Deploy to Azure App Service

  • Create release and show how web deploy package is published to Azure

Step 5: Monitoring

Learning from production is an important aspect of DevOps. Therefore, we need to add logging and monitoring to our solution. Application Insights is a great platform for that. All we need to do is add some NuGet packages and a configuration file and we are ready to go. No need for setting up and maintaining your own data store and analysis solution for monitoring and logging.

Step 6: Load testing

It is important to make sure that your web solution can handle the expected load. VSTS contains a load testing feature. No need to setup load generating agents manually.

Step 7: Build Automation for Web Client

Modern web application often consist of a backend and a SPA front-end. Font end developers don't using MSBuild. They use tools like Grunt, Gulp, or Webpack. Our solution contains a simple Angular 2 web client that is built using Webpack. VSTS can handle that. It can even build and publish Docker images for the web client.

  • Code walkthrough of scripts and dependencies in package.json
  • Show how to build Angular 2 client locally using npm run build-prod
  • Quick overview about Docker (keep it short!)
    • Mention ready-made images in Docker Hub (e.g. nginx, microsoft/dotnet)
  • Code walkthrough of the Dockerfile
  • Create new build process for web client project
    • npm install
    • npm run build-prod
    • docker build -t rstropek/techsummitdemoclient ...
    • docker push rstropek/techsummitdemoclient

Build Docker Image

  • Run build process and show how Docker image is built and published to Docker Hub
  • Show how microsoft/vsts-agent can be used to run configurable, Linux-based VSTS build agents without having to install them manually
    • Demo it by stoping and restarting it: docker run -e VSTS_ACCOUNT=... -e VSTS_TOKEN=... -v /var/run/docker.sock:/var/run/docker.sock -it rstropek/vsts-agent-node

Step 8: Docker Hub Integration in Azure App services

If you use Docker-based images in your web solution, you have to run it somewhere. Of course you could setup your own, custom Docker cluster. With Linux-based Azure App Services you don't need to anymore.

  • Create new Linux-based web app in Linux-based App Service plan (prepared)
  • Link it with rstropek/techsummitdemoclient image in Docker Hub
  • Launch web client running in Docker in Azure App Service

techsummit2016's People

Contributors

rstropek avatar

Stargazers

Christoph Biegner avatar Antoine avatar Anton Staykov avatar David Reher avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.