shikari1893 / azure-webjobs-quickstart

Azure WebJobs sample for the in portal Get Started experience

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Azure WebJobs Quickstart

Azure WebJobs provide an easy way to run background tasks on Azure App Service. The WebJobs SDK makes it easy to start jobs based on events like new Queue messages or new BLOBs.

Learn more about WebJobs:

Getting Started

  1. Clone or download the repository
  2. Open the solution with Visual Studio (2013/2015). Be sure to have the latest Azure SDK installed.
  3. In the App.config, paste in your Azure Storage connection string for the following settings:
<add name="AzureWebJobsDashboard" connectionString="" />
<add name="AzureWebJobsStorage" connectionString="" />
  1. Hit run to test locally - you'll see new Queue Messages created on a regular basis.
  2. Right click on the solution and select "Publish as Azure WebJob" to publish to your App Service App (Web, Mobile, API, etc.)

Contribute

Please follow the Azure Contributor Guidelines. PR requests generally require you accept a CLA. Any issues with the SDK itself should created in the WebJobs SDK GitHub.

License

MIT

About

Azure WebJobs sample for the in portal Get Started experience

License:MIT License


Languages

Language:C# 100.0%