Skip to content

Commit 7609cc1

Browse files
committed
pivot moves
1 parent ca5711d commit 7609cc1

File tree

1 file changed

+35
-3
lines changed

1 file changed

+35
-3
lines changed

articles/app-service/quickstart-webjobs.md

Lines changed: 35 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ zone_pivot_groups: app-service-webjobs
1414

1515
WebJobs is a feature of Azure App Service that enables you to run a program or script in the same instance as a web app. All app service plans support WebJobs at no additional cost. This sample uses a scheduled (Triggered) WebJob to output the system time once every minute.
1616

17+
:::zone target="docs" pivot="dotnet"
1718
## Prerequisites
1819

1920
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio).
@@ -22,12 +23,18 @@ WebJobs is a feature of Azure App Service that enables you to run a program
2223
- Ensure the App setting `WEBSITE_SKIP_RUNNING_KUDUAGENT` is set to `false`.
2324

2425
## Download the sample WebJob
25-
26-
:::zone target="docs" pivot="dotnet"
2726
dotnet
2827
:::zone-end
2928

3029
:::zone target="docs" pivot="python"
30+
## Prerequisites
31+
32+
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio).
33+
- An existing App Service Python app on Linux. In this quickstart, a [Python app](quickstart-python) is used.
34+
- **[Always on](configure-common.md?tabs=portal#configure-general-settings)** must be enabled on your app.
35+
- Ensure the App setting `WEBSITE_SKIP_RUNNING_KUDUAGENT` is set to `false`.
36+
37+
## Download the sample WebJob
3138

3239
You can [download a pre-built sample project](https://github.com/Azure-Samples/App-Service-Python-WebJobs-QuickStart/archive/refs/heads/main.zip) to get started quickly. The sample includes two files: `webjob.py` and `run.sh`.
3340

@@ -75,6 +82,14 @@ The file, `run.sh`, calls WebJob.py as shown below:
7582
:::zone-end
7683

7784
:::zone target="docs" pivot="node"
85+
## Prerequisites
86+
87+
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio).
88+
- An existing App Service Python app on Linux. In this quickstart, a [Python app](quickstart-python) is used.
89+
- **[Always on](configure-common.md?tabs=portal#configure-general-settings)** must be enabled on your app.
90+
- Ensure the App setting `WEBSITE_SKIP_RUNNING_KUDUAGENT` is set to `false`.
91+
92+
## Download the sample WebJob
7893

7994
You can [download a pre-built sample project](https://github.com/Azure-Samples/App-Service-Python-WebJobs-QuickStart/archive/refs/heads/main.zip) to get started quickly. The sample includes two files: `webjob.js` and `run.sh`.
8095

@@ -126,10 +141,27 @@ node webjob.js
126141
:::zone-end
127142

128143
:::zone target="docs" pivot="java"
129-
java
144+
## Prerequisites
145+
146+
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio).
147+
- An existing App Service Python app on Linux. In this quickstart, a [Python app](quickstart-python) is used.
148+
- **[Always on](configure-common.md?tabs=portal#configure-general-settings)** must be enabled on your app.
149+
- Ensure the App setting `WEBSITE_SKIP_RUNNING_KUDUAGENT` is set to `false`.
150+
151+
## Download the sample WebJob
152+
130153
:::zone-end
131154

132155
:::zone target="docs" pivot="php"
156+
## Prerequisites
157+
158+
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio).
159+
- An existing App Service Python app on Linux. In this quickstart, a [Python app](quickstart-python) is used.
160+
- **[Always on](configure-common.md?tabs=portal#configure-general-settings)** must be enabled on your app.
161+
- Ensure the App setting `WEBSITE_SKIP_RUNNING_KUDUAGENT` is set to `false`.
162+
163+
## Download the sample WebJob
164+
133165
You can [download a pre-built sample project](https://github.com/Azure-Samples/App-Service-PHP-WebJobs-QuickStart/archive/refs/heads/main.zip) to get started quickly. The sample includes two files: `webjob.php` and `run.sh`.
134166

135167
The PHP script, `webjob.php`, outputs the current time to the console as shown below:

0 commit comments

Comments
 (0)