Azure WebJobs sample for the in portal Get Started experience
Перейти к файлу
microsoft-github-policy-service[bot] 53dd84b190
Auto merge mandatory file pr
This pr is auto merged as it contains a mandatory file and is opened for more than 10 days.
2023-03-28 16:48:07 +00:00
WebJobs-Quickstart Add WebJob Quickstart solution 2015-12-10 16:04:42 -08:00
.gitignore Initial commit 2015-12-10 12:03:20 -08:00
LICENSE.txt Initial commit 2015-12-10 12:03:20 -08:00
README.md Fix list formatting for getting started 2015-12-10 16:02:56 -08:00
SECURITY.md Microsoft mandatory file 2023-01-24 17:24:23 +00:00
WebJobs-Quickstart.sln Add WebJob Quickstart solution 2015-12-10 16:04:42 -08:00

README.md

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