Skip to content Skip to sidebar Skip to footer

Deploying Two Github Repositories To Single Azure Web App

This is not really a programmatically question, but i couldnt find any more suitable stackexchange site for it. I have recently moved to Azure, where i deploy my backend web applic

Solution 1:

You just need to customize the deployment procedure a bit. Amit Apple has a good series on this. Customize your deployment script to build your temporary directory with everything you need and then deploy it. Azure will give you the deployment script to customize or you can use the azure-cli to generate one and you can customize it.

http://blog.amitapple.com/post/38417491924/azurewebsitecustomdeploymentpart1

The deployment script will use KuduSync to copy either a repository or temp folder to your wwwroot folder, so it's up to you to build this folder and have it pushed out.

https://github.com/projectkudu/kudu/wiki/Custom-Deployment-Script


Post a Comment for "Deploying Two Github Repositories To Single Azure Web App"