1

I have an angularjs app with a c# webapi . The repo for the angular app is stash and the c# restapi is in TFS. Is it possible/easy to create an automated build and deployment environment for this stack? What are possible solutions for this? Does anyone have a blogpost abt. this?

bier hier
  • 20,970
  • 42
  • 97
  • 166

1 Answers1

1

There is two way to integrate with Bitbucket repo and TFS for now:

  • Option 1: One-Time import of source code form Bitbucket
  • Option 2: Stick with Bitbucket and trigger CI on VSTS/TFS

Note it's not a real CI

While this is not exactl what some people might expect from CI (because it doesn’t really build on every check-in) for most scenarios this should be good enough. Especially if your build process is running for a longer time this shouldn’t be an issue at all.

Details please refer this tutorial: Integrating VSTS with Bitbucket, you could also take a look at this blog: Visual Studio Team Services: Connecting a BitBucket Repository

For the CI/CD of angular app/angularjs/asp.net web api, even though there is not a blog full described everything. You still could refer some similar related blogs(even for Azure) and setup your own pipeline, use NPM to install packages/dependencies:

PatrickLu-MSFT
  • 49,478
  • 5
  • 35
  • 62