0

Can someone help me deploy an angular2 application as a webapp in azure. I have a github enterprise setup. On my Jenkins server, I would like to do a no build. On successful completion of the build, I'd like to push it to a webapp.

Every deployment I attempted, failed on npm of one form or other. I don't want to create a VM and deploy a server.

I'd appreciate any help on this.

Krishnan Sriram
  • 5,037
  • 5
  • 21
  • 31
  • please refer to question: http://stackoverflow.com/questions/37487046/deploy-angular-2-with-azure-webapp/43119936#43119936 – Amir Sasson Apr 19 '17 at 06:20

1 Answers1

2

Deployment of all supported web applications to azure web app service ( PaaS and not IaaS VM as per your requirement) is possible by the following options

  1. from git CLI you can publish the code from your local repository to azure.
  2. linking an online repository like bitbucket, gitlabs to azure
  3. Powershell - publish code from your local repository to azure
  4. Azure CLI - publish code from your local repository to azure
  5. FTP option is available as well.

Check out this post to see how you can publish using git commandline https://learn.microsoft.com/en-us/azure/app-service-web/app-service-deploy-local-git

Mitul
  • 9,734
  • 4
  • 43
  • 60
Aravind
  • 4,125
  • 1
  • 28
  • 39