Deploy Angular App Using Azure DevOps Build And Release Pipelines Easy Way

Introduction

I do understand there are many articles on the same topic, but most of the solutions didn’t work for me with the latest pipeline configuration. So, I thought of writing this article. Here, we are going to set up our Build and release pipeline configuration of our Angular application very easily, in fact, by following some basic tasks. We will be using Azure DevOps FTP Pipeline Service Connection for the configuration. Let’s stop the introduction and jump into the configuration.

You can always read this article on my blog here.

Background

I was trying to deploy my Angular application to Azure. For that, I wanted to set up my Build and Release pipelines. I had followed some tutorials already available but I was facing some issues with them. Later, I decided to use the Azure FTP Upload Release Task. So, basically, we will be having only one task in our Release Pipeline.

Set Up the Pipelines

As I was mentioning, here, we are going to configure our Build and Release configuration.

Build Pipeline

Here, we are going to configure the Azure DevOps Build Pipeline. But, before that, we need to define our script in the package.json file.

  1. "scripts": {  
  2.     "ng""ng",  
  3.     "start""ng serve",  
  4.     "build""ng build",  
  5.     "test""ng test",  
  6.     "lint""ng lint",  
  7.     "e2e""ng e2e",  
  8.     "prod-build-dev""ng build --prod --build-optimizer",  
  9.     "prod-build-staging""ng build --prod --configuration=staging --build-optimizer"  
  10. }  

If you have different routes and you need to access them directly in the URL of the browser, you should consider adding a web.config file to your "src" folder.

  1. <configuration>  
  2.     <system.webServer>  
  3.         <rewrite>  
  4.             <rules>  
  5.                 <rule name="Angular" stopProcessing="true">  
  6.                     <match url=".*" />  
  7.                     <conditions logicalGrouping="MatchAll">  
  8.                         <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />  
  9.                         <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />  
  10.                     </conditions>  
  11.                     <action type="Rewrite" url="/" />  
  12.                 </rule>  
  13.             </rules>  
  14.         </rewrite>  
  15.     </system.webServer>  
  16. </configuration>  

Once that is done, add it as an asset to the angular.json file.

  1. "assets": [ "src/favicon.ico""src/assets""src/web.config"]  

Now, go to your Azure DevOps site, and click on Pipelines and then Builds. Click on the plus icon.

Pipeline

Click on the Pipeline section. Here, you can mention your pipeline name and the Agent pool. Please remember to select the Agent pool as Hosted VS2017; else, you may end up seeing an error as “Npm failed with return code: 1 2019–01–07T10:14:37.3309955Z ##[section]Finishing: npm build“.

Image: Select the Pipeline Agent

Phase 1

I recommend you to leave this as it is. You can change the display name though.

npm install

Click on the + icon in the Phase section and search for “npm” and click "Add". Now, we can configure this task.

Image: npm install task

You can also click on the ribbon View YAML, to see the YML version of the task.

npm build

In this step, we will add a new npm task and configure it for our Build script.

Image: npm run build

Please note  that the command is custom and we have given the script which we have already set in our package.json file, which is prod-build-dev.

Publish Artifact

Here, in this step, we will publish our artifacts generated. This is very important, otherwise, the release configuration will not be able to find your package.json file in the directory. Add a new task called “Publish Build Artifacts” and configure the same as mentioned in the image below.

Publish Build Artifacts

Enable the Continuous Integration

As we have set up the Tasks, now it is time to set up the continuous integration. Click on the Triggers section and check the Enable continuous integration.

Enable Continuous Integration

Debugging the Build

If you ever need to debug the Build pipeline, you can enable the same in the Variable section. Just making the system.debug value to true will do the trick.

Debugging Build

Run the Build

Once you are done with everything, you can click on the "Save & Queue" button to initiate the build. Our agent will run now and the tasks will be executed. As we have enabled the debug property to true in the Variables, we can now see the detailed logs in the console. The following tasks will be happening.

Build Pipeline Output

Release Pipeline

Wow, we have successfully created our build pipeline, now it is time to create a Release pipeline. As I mentioned earlier, we are going to have only one Task in our Release pipeline, which is nothing but “FTP Upload”. Click on the Pipelines and then Releases, click on the +New icon to create a new Release pipeline.

Select the Artifacts

Here, in this step, we should select the Artifacts generated in the build.

Select the Artifacts

Select the Stage

Click on the "Stages" and add one.

Adding an FTP Service Connection

Before we add a new FTP Upload task, we need to create a new FTP service connection in our Azure DevOps site. Click on the Project Settings on the bottom left corner, go to the Pipelines section, and then click on the Service connections. Now click on the + New service connection, in the pop up you need to provide the details which you can get from the Publish profile of your Azure Web App (Click on the Get Publish Profile in your Web App resource, overview section in the Azure portal).

Add a Generic Service Connection

Add the FTP Upload Task

Now, it is time to add the FTP Upload Task. Click on the + icon in the Agent Job Task and add the task FTP Upload.

Image: FTP Upload Task

Here, the remote directory is the folder where our application files are going to be. You should be able to see those files if you just log into the explorer using your FTP details from your App Publish profile.

Create a Release

Now, it is time to create a Release. Click on the + Release button and then "+ Create a release". In the upcoming window, you should be able to see the Pipeline and the artifacts selected. Just click on the "Create" button. The agent will be started in a few seconds. Once it is ready, it will execute the tasks. Please be noted that the FTP Upload Task will remove the content from the directory first and then upload the new one.

Release Pipeline Tasks Output

Change the App Service Virtual Path

As we have given a custom folder in the Release configuration, we should also change the Virtual Path of the Azure App service. To do so, go to your Azure App Service and then select Virtual Path under Application Settings. Set the Virtual Path as “/” and Virtual Path as “site\wwwroot\wwwroot\yourappname(the folder name inside dist folder)” and the type as “Application”.

Set Virtual Physical Path

Once you are done, you can see your Angular application running.

Conclusion

Wow! Now, we have learned,

  • How to set up the Azure DevOps Build Pipeline configuration
  • How to set up the Azure DevOps Release Pipeline configuration
  • How to create new FTP Service Connection in Azure DevOps
  • How to configure Azure Web App
  • How to upload the new code to MXChip device
  • How to perform the Device to Cloud message output.

You can always read my articles related to Azure here.

Your turn. What do you think?

Thanks a lot for reading. Did I miss anything that you may think is needed in this article? Did you find this post useful? Kindly do not forget to share your feedback.


Similar Articles