└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # Overview of Azure Services 2 | This file contains text you can copy and paste for the examples in Cloud Academy's _Overview of Azure Services_ course. 3 | 4 | ### Introduction 5 | [Azure Free Trial](https://azure.microsoft.com/free) 6 | 7 | ### Using the Azure Portal 8 | [Azure Portal](https://portal.azure.com) 9 | 10 | ### Using the Azure CLI 11 | ``` 12 | git clone https://github.com/Azure-Samples/html-docs-hello-world.git 13 | cd html-docs-hello-world 14 | az webapp up --location westus --name [your_name] --html 15 | http://[your_name].azurewebsites.net 16 | az group delete --name [resource_group_name] 17 | ``` 18 | **Note:** If you're using Cloud Academy's Azure CLI Playground lab, then you'll need to use the following two commands instead of the "az webapp up..." command above. The first command tells you what values to use for [resource_group] and [location] in the second command. 19 | ``` 20 | az group list --query "[].{resource_group:name, location:location}" 21 | az webapp up -g [resource_group] --location [location] -n [app_name] --sku S1 --html 22 | ``` 23 | 24 | ### Service Categories 25 | [Azure Products](https://azure.microsoft.com/services/) 26 | 27 | ### Designing a Solution 28 | [Azure Architecture Center](https://docs.microsoft.com/azure/architecture/) 29 | 30 | ### Summary 31 | [Azure documentation](https://docs.microsoft.com/azure/) 32 | support@cloudacademy.com 33 | --------------------------------------------------------------------------------