This file contains URLs from the demos in Cloud Academy's Deploying Code from GitHub to Azure App Service course.
az group create --name webapprg --location westus
az appservice plan create --name asplan --resource-group webapprg --location westus --sku F1
az webapp create --name <app_name> --resource-group webapprg --plan asplan
az webapp deployment source config --repo-url https://github.com/Azure-Samples/html-docs-hello-world --branch master --manual-integration --name <app_name> --resource-group webapprg
https://<app_name>.azurewebsites.net