AWS/Azure/OpenShift Version Control System

How to deploy your Angular App to Azure from Visual Studio Code

Deploying Angular App

This guide will show you how easy it is in deploying your angular app to Azure right from your IDE-like visual studio code. The integration of Azure with VS Code is very seamless when you put the right things in place and you do the right thing. Azure is a public cloud computing platform from Microsoft. Please see how to build your first CI/CD Pipeline in Azure DevOps using ASP.Net Core Application, and GitLab-runner is not recognized as an internal or external command, operable program, or batch file.

Some of the solutions it offers are infrastructure as a service (IaaS), Platform as a Service (PaaS), and Software as a Service (SaaS). This cloud solution provides you with computing, storage, networking capacity, and many more. Visual Studio Code is an integrated development environment software with a graphical user interface with different development tools that delight any developer.

Create an Azure Web Service in Azure Portal – Login to your Azure portal and click the “Create a resource” button and choose the Web App template.

Azure deployment
Azure Portal

Select Web App as shown below

Visual Studio Code
Creating your Azure resources

On the next page under your Azure subscription create a Resource Group. Configure your instance details:

  • Give it a URL name
  • Select Code as the Publish
  • Select either Node 14 LTS or Node 12 LTS as the Runtime stack
  • Depending on your operating system select either Linus or Windows
  • Select Region

Here are some guides: How to create Windows 11 Bootable USB drive, How to fix Windows Task Scheduler Service Greyed Out in Services MMC, The term “git” was not used as the name of a cmdlet, function, script file, or executable Program recognized, and Azure DevOps and GitHub integration for Docker and Kubernetes deployment.

Configure your App Service Plan

Note: App Service plan pricing tier determines the location, features, cost, and compute resources associated with your app.

  • Create your windows Plan

Then Click Review + Create and wait for the review page to open,, then click on Create and wait for the Web App to be created for some seconds.

Angular application deployment
Creating your Web App on Azure

Consequently, Click on Create as shown below

Deploying Angular App
Creating your Web App on Azure

Nonetheless, the deployment, the Web App will be ready for use

Azure deployment
Web App Deployment

It’s now time to create an Angular application using Angular CLI. In addition, Install Angular CLI by opening a terminal window and running the following command:

npm install –g @angular/cli
Angular application deployment
NPM installation via PowerShell

Then run the CLI command ng new and supply the name you want to use for the app.

ng new techdirectarchive

In addition, the App is created change the directory to the app folder and run the server in the app directory.

cd techdirectarchive
Visual Studio Code
Angular App installation via PowerShell

Run the command “ng serve” as shown below.

ng serve
Azure deployment
Angular App installation via PowerShell

Moreover, creating the Angular application, open it with Visual Studio Code.

However, You must also install the Azure App Service extension in VS Code.

extension
Installation of Azure App Service Extension on VS Code

Additionally, Sign in to Azure and see a new Azure workloads button at the bottom. Furthermore, When the button is clicked, you will see all the Azure workloads.

After signing in to the Azure portal from Visual Studio Code, you can see the list of available subscriptions and web apps for that user.

ide
Azure with VS Code

Initially, we created a Web App, “techdirectarchive,” using a node runtime stack. Therefore, It is effortless to deploy our Angular application to this Web App on Azure.

Nevertheless, deploying to Azure, we must build our Angular app using the below command, which will build the Angular project and create all necessary files to a dist folder.

ng build --prod

Similarly, note that sometimes another subfolder may be created in the name of your project.

prod
The Build Command

Consequently, We must deploy this “dist\techdirectarchive” folder to Azure by right-clicking it and choosing the  Deploy to Web App option.

ide2
Deployment from VS Code to Azure


Nonetheless, it will display the default Angular project folder, and make sure you select the correct folder.

ide3
Deployment from VS Code to Azure

Go ahead and open the application on the Azure web service

azurewebsite2
azureweb
Angular App Deployed to Azure

However, Your Angular App is live on Azure. When you make any adjustment in the code you need to deploy again. Moreover, After every adjustment you must build the application again with the same command:

ng build –prod

Furthermore, select our Web App and choose the Deploy to Web App option in the visual studio code. In addition, You can reconfirm the Angular App again via Azure to see the changes.

Subscribe
Notify of
guest

3 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
unimpressed

An Angular app that does nothing!, how bout with a .net core api behind it

Juan

Many thanks for the article, it helped me a lot!

Christian

You are welcome!

3
0
Would love your thoughts, please comment.x
()
x