Reputation: 1165
I have a existing git repository for a solution made up of multiple projects, some .Net, some Node.js. I want to deploy some of those projects to Azure Web sites via git.
Deploying an ASP.Net project living in a subfolder was easy (see Scott Hanselman's blog post) using a .deployment
file:
[config]
project = WebProject/MyFirstSiteWebProject.csproj
Is there similar way to deploy a Node.js project living in a subfolder to Azure via git push?
Upvotes: 3
Views: 357
Reputation: 43193
Yes, it's basically the same, except you set project
to the folder instead of the csproj file. e.g.
[config]
project = SomeFolder
See here for details.
Upvotes: 7