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
-
An Azure account. If you don't have one, you can create for free.
-
You need Visual Studio Code installed along with the Node.js and npm the Node.js package manager and the below extensions:
-
You need Azure Account extension and Deploy to Azure extension
-
A GitHub account, where you can create a repository. If you don't have one, you can create one for free.
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
-
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.
-
Follow this link to push this project to GitHub using the command line.
-
Open your application folder in VS Code and get ready to deploy to Azure.
Install the extension
-
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)
. -
Search for Deploy to Azure extension and install.
-
After the installation is complete, the extension will be located in enabled extension space.
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
-
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.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.
-
Select a pipeline template you want to create from the list. Since we're targeting
Node.js
, selectNode.js with npm to App Service.
-
Select the target Azure Subscription to deploy your application.
-
Select the target Azure resource to deploy your application.
-
Enter GitHub personal access token (PAT), required to populate secrets that are used in GitHub workflows. Set the scope to
repo
andadmin:repo_hook
.Tip
If the code is in Azure Repos, you need different permissions.
-
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.
Tip
You can customize the pipeline using all the features offered by Azure Pipelines and GitHub Actions.
-
Navigate to your GitHub repo to see the actions in progress.
-
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.
-
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.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.
-
Select a pipeline template you want to create from the list. Since we're targeting
Node.js
, selectNode.js with npm to App Service.
-
Select the target Azure Subscription to deploy your application.
-
Select the target Azure resource to deploy your application.
-
Enter GitHub personal access token (PAT), required to populate secrets that are used in GitHub workflows. Set the scope to
repo
andadmin:repo_hook
. -
Select an Azure DevOps organization.
-
Select an Azure DevOps project.
-
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.
Tip
You can customize the pipeline using all the features offered by Azure Pipelines and GitHub Actions.
-
Navigate to your Azure DevOps project to see the pipeline in progress.
-
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
-
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.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.
-
Select a pipeline template you want to create from the list. Since we're targeting
Node.js
, selectNode.js with npm to App Service.
-
Select the target Azure Subscription to deploy your application.
-
Select the target Azure resource to deploy your application.
-
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.
Tip
You can customize the pipeline using all the features offered by Azure Pipelines and GitHub Actions.
-
Navigate to your Azure DevOps project to see the pipeline in progress.
-
Navigate to your site running in Azure using the Web App URL
http://{web_app_name}.azurewebsites.net
, and verify its contents.
posted on 2021-01-25 13:02 lingdanglfw 阅读(130) 评论(0) 编辑 收藏 举报