Skip to main content Link Menu Expand (external link) Document Search Copy Copied

Trainer demonstrations

Table of contents

  1. Learning Path 1: Explore Azure App Service
  2. Learning Path 02: Implement task processing logic by using Azure Functions
  3. Learning Path 03: Develop solutions that use Blob storage
  4. Learning Path 04: Develop solutions that use Azure Cosmos DB
  5. Learning Path 05: Implement containerized solutions
  6. Learning Path 06: Implement user authentication and authorization
  7. Learning Path 07: Implement secure cloud solutions
  8. Learning Path 08: Implement API Management
  9. Learning Path 09: Develop event-based solutions
  10. Learning Path 10: Develop message-based solutions
  11. Learning Path 11: Troubleshoot solutions by using Application Insights
  12. Learning Path 12: Implement caching for solutions




Learning Path 1: Explore Azure App Service

  • Deploy Web App using Git repository

      az login
        
      gitrepo="https://github.com/Azure-Samples/php-docs-hello-world"
        
      $gitrepo
        
      az group create --location eastus --name <resource-group-name>
        
      az appservice plan create --name <web-app-service-plan-name> --resource-group <resource-group-name> --sku FREE
        
      az webapp create --name <web-app-service-name>  --resource-group <resource-group-name> --plan <web-app-service-plan-name> 
        
      az webapp deployment source config --name <web-app-service-name> --resource-group <resource-group-name> --repo-url $gitrepo --branch master --manual-integration
    




Learning Path 02: Implement task processing logic by using Azure Functions




Learning Path 03: Develop solutions that use Blob storage




Learning Path 04: Develop solutions that use Azure Cosmos DB




Learning Path 05: Implement containerized solutions




Learning Path 06: Implement user authentication and authorization




Learning Path 07: Implement secure cloud solutions




Learning Path 08: Implement API Management




Learning Path 09: Develop event-based solutions




Learning Path 10: Develop message-based solutions




Learning Path 11: Troubleshoot solutions by using Application Insights




Learning Path 12: Implement caching for solutions