Docs

OTC Cloud Development Documentation

Functions

Functions share a few core technical concepts and components, regardless of the language or binding you use. After completing this module, you'll be able to: Explain the key components of a function and how they are structured Create triggers and bindings to control when a function runs and where the output is directed Connect a function to services in Azure Create a function by using Visual Studio Code and the Azure Functions Core Tools

Explore OTC Azure Functions development

Web Apps

Azure App Service is an HTTP-based service for hosting web applications, REST APIs, and mobile back ends. You can develop in your favorite programming language, be it .NET, .NET Core, Java, Ruby, Node.js, PHP, or Python. Applications run and scale with ease on both Windows and Linux-based environments.

Install CLI

Requirements

  • Windows Environments
  • Azure Cli, Cloud Shell, PowerShell

Web App Create and Deploy

Create App

az webapp create

Create a web app with an image from a private Azure Container Registry

az webapp create -g MyResourceGroup -p MyPlan -n MyUniqueAppName -i myregistry.azurecr.io/docker-image:tag

Configure continuous deployment via containers

az webapp deployment container config --enable-cd {false, true}