• Deploy Azure App Service with VS Code


    Deploy to Azure App Service using Visual Studio Code

    This tutorial walks you through setting up a CI/CD pipeline for deploying Node.js application to Azure App Service using Deploy to Azure extension.

    Prerequisites

     Important

    Ensure that you have all the prerequisites installed and configured. In VS Code, you should see your Azure email address in the Status Bar.

    Create Node.js application

    Create a Node.js application that can be deployed to the Cloud. This tutorial uses an application generator to quickly scaffold the application from a terminal.

     Tip

    If you have already completed the Node.js tutorial, you can skip ahead to Setup CI/CD Pipeline.

    Install the Express Generator

    Express is a popular framework for building and running Node.js applications. You can scaffold (create) a new Express application using the Express Generator tool. The Express Generator is shipped as an npm module and installed by using the npm command-line tool npm.

     Tip

    To test that you've got npm correctly installed on your computer, type npm --help from a terminal and you should see the usage documentation.

    Install the Express Generator by running the following from a terminal:

    npm install -g express-generator

    The -g switch installs the Express Generator globally on your machine so you can run it from anywhere.

    Scaffold a new application

    We can now scaffold a new Express application called myExpressApp by running:

    express myExpressApp --view pug --git

    This creates a new folder called myExpressApp with the contents of your application. The --view pug parameters tell the generator to use the pug template engine (formerly known as jade).

    To install all of the application's dependencies (again shipped as npm modules), go to the new folder and execute npm install:

    cd myExpressApp
    npm install
    

    At this point, we should test that our application runs. The generated Express application has a package.json file, that includes a start script to run node ./bin/www. This will start the Node.js application running.

    Run the application

    1. From a terminal in the Express application folder, run:

      npm start

      The Node.js web server will start and you can browse to http://localhost:3000 to see the running application.

    2. Follow this link to push this project to GitHub using the command line.

    3. Open your application folder in VS Code and get ready to deploy to Azure.

    Install the extension

    1. Bring up the Extensions view by clicking on the Extensions icon in the Activity Bar on the side of VS Code or the View: Extensions command (Ctrl+Shift+X).

    2. Search for Deploy to Azure extension and install.

      deploy to azure

    3. After the installation is complete, the extension will be located in enabled extension space.

      extension installed

    Setup CI/CD Pipeline

    Now you can deploy to Azure App Services, Azure Function App and AKS using VS code. This VS Code extension helps you set up continuous build and deployment for Azure App Services without leaving VS Code.

    To use this service, you need to install the extension on VS Code. You can browse and install extensions from within VS Code.

    Combination of workflows

    We support GitHub Actions and Azure Pipelines for GitHub & Azure Repos correspondingly. We also allow you to create Azure Pipelines if you still manage the code in GitHub.

    GitHub + GitHub Actions

    1. To set up a pipeline, choose Deploy to Azure: Configure CI/CD Pipeline from the command palette (Ctrl/Cmd + Shift + P) or right-click on the file explorer.

      configure CI/CD

       Note

      If the code is not opened in the workspace, it will ask for folder location. Similarly, if the code in the workspace has more than one folder, it will ask for folder.

    2. Select a pipeline template you want to create from the list. Since we're targeting Node.js, select Node.js with npm to App Service.

      pipeline template selection

    3. Select the target Azure Subscription to deploy your application.

      Azure subscription

    4. Select the target Azure resource to deploy your application.

      target app

    5. Enter GitHub personal access token (PAT), required to populate secrets that are used in GitHub workflows. Set the scope to repo and admin:repo_hook.

      pat scope

       Tip

      If the code is in Azure Repos, you need different permissions.

    6. The configuration of GitHub workflow or Azure Pipeline happens based on the extension setting. The guided workflow will generate a starter YAML file defining the build and deploy process. Commit & push the YAML file to proceed with the deployment.

      commit YAML

       Tip

      You can customize the pipeline using all the features offered by Azure Pipelines and GitHub Actions.

    7. Navigate to your GitHub repo to see the actions in progress.

      actions

    8. Navigate to your site running in Azure using the Web App URL http://{web_app_name}.azurewebsites.net, and verify its contents.

    GitHub + Azure Pipelines

     Important

    To setup CI/CD in Azure Pipelines for Github Repository, you need to enable Use Azure Pipelines for GitHub in the extension.

    To open your user and workspace settings, use the following VS Code menu command:

    • On Windows/Linux - File > Preferences > Settings
    • On macOS - Code > Preferences > Settings

    You can also open the Settings editor from the Command Palette (Ctrl+Shift+P) with Preferences: Open Settings or use the keyboard shortcut (Ctrl+,).

    When you open the settings editor, you can search and discover settings you are looking for. Search for the name deployToAzure.UseAzurePipelinesForGithub and enable as shown below.

    Search for and enable deployToAzure.UseAzurePipelinesForGithub.

    1. To set up a pipeline, choose Deploy to Azure: Configure CI/CD Pipeline from the command palette (Ctrl/Cmd + Shift + P) or right-click on the file explorer.

      Choose Deploy to Azure: Configure CI/CD Pipeline from the command palette.

       Note

      If the code is not opened in the workspace, it will ask for folder location. Similarly, if the code in the workspace has more than one folder, it will ask for folder.

    2. Select a pipeline template you want to create from the list. Since we're targeting Node.js, select Node.js with npm to App Service.

      pipeline template selection

    3. Select the target Azure Subscription to deploy your application.

      Azure subscription

    4. Select the target Azure resource to deploy your application.

      target app

    5. Enter GitHub personal access token (PAT), required to populate secrets that are used in GitHub workflows. Set the scope to repo and admin:repo_hook.

      Enter GitHub personal access token (PAT).

      Set the scope to repo and admin:repo_hook.

    6. Select an Azure DevOps organization.

      org

    7. Select an Azure DevOps project.

      project

    8. The configuration of GitHub workflow or Azure Pipeline happens based on the extension setting. The guided workflow will generate a starter YAML file defining the build and deploy process. Commit & push the YAML file to proceed with the deployment.

      Push YAML starter file.

       Tip

      You can customize the pipeline using all the features offered by Azure Pipelines and GitHub Actions.

    9. Navigate to your Azure DevOps project to see the pipeline in progress.

      Navigate to your Azure DevOps project to see the pipeline in progress.

    10. Navigate to your site running in Azure using the Web App URL http://{web_app_name}.azurewebsites.net, and verify its contents.

    Azure Repos + Azure Pipelines

    1. To set up a pipeline, choose Deploy to Azure: Configure CI/CD Pipeline from the command palette (Ctrl/Cmd + Shift + P) or right-click on the file explorer.

      Configure CI/CD, Azure Repos + Azure Pipelines.

       Note

      If the code is not opened in the workspace, it will ask for folder location. Similarly, if the code in the workspace has more than one folder, it will ask for folder.

    2. Select a pipeline template you want to create from the list. Since we're targeting Node.js, select Node.js with npm to App Service.

      pipeline template selection

    3. Select the target Azure Subscription to deploy your application.

      Azure subscription

    4. Select the target Azure resource to deploy your application.

      target app

    5. The configuration of GitHub workflow or Azure Pipeline happens based on the extension setting. The guided workflow will generate a starter YAML file defining the build and deploy process. Commit & push the YAML file to proceed with the deployment.

      YAML starter file, Azure Repos + Azure Pipelines.

       Tip

      You can customize the pipeline using all the features offered by Azure Pipelines and GitHub Actions.

    6. Navigate to your Azure DevOps project to see the pipeline in progress.

      Navigate to your Azure DevOps project to see the Azure pipeline in progress.

    7. Navigate to your site running in Azure using the Web App URL http://{web_app_name}.azurewebsites.net, and verify its contents.

     

  • 相关阅读:
    【转】Android Hook框架Xposed详解
    【转】不需要 Root,也能用上强大的 Xposed 框架:VirtualXposed
    【转】手把手教你读取Android版微信和手Q的聊天记录(仅作技术研究学习)
    【转】关于音频焦点的理解
    test
    Linux只下载不安装软件包
    Linux用户创建/磁盘挂载相关命令
    telnet的安装配置及xinetd的讨论
    vsftp安装配置教程
    wordpress安装教程
  • 原文地址:https://www.cnblogs.com/lingdanglfw/p/14324643.html
Copyright © 2020-2023  润新知