CSharpAtl
CSharpAtl

Reputation: 7522

Azure webjob - how to use CI with node

I have a scheduled web job and I would like to do Continuous Deployment with this job. Travis is my CI service, and would like to be able to leverage it for this purpose. Any advice is greatly appreciated.

Upvotes: 0

Views: 127

Answers (1)

David Ebbo
David Ebbo

Reputation: 43203

First, I suggest relying on the newer CRON mechanism instead of the Azure Scheduler for the scheduling, as it will make CI smoother (details here).

When it comes to deploying the file, the answer depends on whether your Web App is only running your WebJob or also has a site. In the end, you want to make sure your WebJob files end up under wwwroot\app_data\jobs\triggered\{job name} (details here).

Upvotes: 2

Related Questions