Questions tagged [kudu]

Kudu allows git push deployment for .net based web projects.

Although it was developed to deploy .net web projects to the Microsoft Azure Cloud it can also be used outside from Azure to deploy on premises IIS.

Wiki: https://github.com/projectkudu/kudu/wiki Forum: http://social.msdn.microsoft.com/Forums/en-US/azuregit/threads

428 questions
0
votes
2 answers

Deploying Single Page app from appveyor to azure

I'm trying to figure out how to continuously deploy a single page application from appveyor to an azure website. I'm in a bit of a bind because I don't have access to the azure directly, so I'm trying to figure out as many details before contacting…
jrossi
  • 186
  • 3
0
votes
2 answers

Azure Website Git deployment with 3rd party libs not in nuget

I would like to use Azure git deployment with a product I am working on. We reference a 3rd party library which is privately supplied and not available on Nuget. Azure syncs with the git repo as you would expect, but when it compiles it fails with…
Sam
  • 4,219
  • 7
  • 52
  • 80
0
votes
2 answers

Custom logs in Azure website file system combined into single log file

My Azure web app (App Service) writes a log file mywebapp.log to the d:\LogFiles directory of the VM that hosts the website. When the log file gets to a certain size I rename it to mywebapp1.log, mywebapp2.log, and so on so and a new log file is…
Howiecamp
  • 2,981
  • 6
  • 38
  • 59
0
votes
3 answers

How to access Azure Webjobs log using C#

I have a azure webjob running on a scheduled basis and I need to access the run logs and the output of each run. I bumped into kudu api, but couldn't go any further as I was not sure which credentials to pass with my web request. Sample…
Vijay
  • 426
  • 1
  • 5
  • 15
0
votes
1 answer

Azure custom deployment script - remove additional files at desitination

When using a custom deployment script for a Github to Azure continuous deployments how do you get the script to remove additional files at destination the same way in which you can when publishing through Visual Studio (VS screenshot below). If it…
marvc1
  • 3,641
  • 3
  • 25
  • 34
0
votes
1 answer

How to publish Grunt-assembled web site to the root of Azure Web App using Kudu?

I have a web site assembled (is it the right term?) by Grunt. It has the following structure: / src/ (input) doc/ images/ js/ scss/ Web.config external/ node_modules/ dist/ (output) css/ fonts/ images/ …
abatishchev
  • 98,240
  • 88
  • 296
  • 433
0
votes
1 answer

Azure WebJob deployed from Bitbucket is set up as continuous instead of scheduled

When deploying a webjob from Bitbucket (using continuous deployment), the process seems to ignore any settings created for the job, like schedule and name. The webjob resides in its own solution, without any site. Is it possible to somehow add a…
adamfinstorp
  • 1,627
  • 3
  • 17
  • 26
0
votes
1 answer

Showing Azure WebJob Functions log using API (Kudu)

I am using Kudu Api to display some webjob data on a website monitoring app I created. The web app monitors data from a few other websites I created. I was wondering what API endpoints do I need to run in order to get the data from this…
Toonsylvania
  • 453
  • 6
  • 21
0
votes
1 answer

Kudu sync does not copy satellite assemblies to web job directory

I'm using Kudu to deploy to an Azure Webapp from Git. Today I discovered that the satellite assemblies that contain translations (generated from standard resx files) are not copied to the WebJob destination directory. E.g. the de\MyLib.resources.dll…
theDmi
  • 17,546
  • 6
  • 71
  • 138
0
votes
1 answer

Azure login in KUDU console

I have an azure site, and im trying to automate UI testing and a site switch on successful UI tests. However im having some trouble logging into my azure site to do the deploy. Inside the KUDU I have tried the following: npm install azure-cli -g…
undefined
  • 33,537
  • 22
  • 129
  • 198
0
votes
1 answer

Execute azure site swap as part of a kudu deploy

I would like to build my deployment so that at the end of the deploy it swaps the new site into production. I'm using deployment slots so the command azure site swap mysite shoud do what im after To do this I tried this in my kudu deploy script…
undefined
  • 33,537
  • 22
  • 129
  • 198
0
votes
1 answer

Set default appsettings in Kudu Azure Websites deployment

Is it possible to set a default appsettings keys/values in AzureWebsites in deployment script? I know that is possible in web.config, but I want to be set in AzureWebsites configuration tab dynamically eg. key:dbname…
Ammaroff
  • 944
  • 7
  • 22
0
votes
1 answer

Installing Azure SDK on an Azure box (kudu)

I'm setting up deployment from source on Windows Azure using kudu. The project fails to build with the following message: D:\home\site\repository\CliniscanAzure\CliniscanAzure.ccproj(62,3): error MSB4019: The imported project "D:\Program Files…
Yes - that Jake.
  • 16,725
  • 14
  • 70
  • 96
0
votes
2 answers

How to initialize a koa node.js app application on IISNode (Azure WebSites)

We are currently moving a self-hosted koa app to IISNode on Azure WebSites.. In self-hosting, we initiallize the application by calling node --harmony ./bin/application Requests then go to ./index.js. However we could not find how to setup…
JoaoCC
  • 624
  • 6
  • 15
0
votes
2 answers

Error setting up node v0.11.x on Azure WebSite

We are trying to move a node.js app that requires node v0.11.x to Azure WebSites. When trying to use azure-node-runtime-selector to install node v0.11.x, we encounted what seems a bug caused by nodist installing npm 2.0.0-alpha. Below the output…
JoaoCC
  • 624
  • 6
  • 15
1 2 3
28
29