Skip to content

Commit 975428c

Browse files
Merge pull request #306541 from ggailey777/uuf-customer-fixes
[Functions] Customer fixes
2 parents 1d76567 + 15c0384 commit 975428c

1 file changed

Lines changed: 14 additions & 1 deletion

File tree

articles/azure-functions/functions-develop-local.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Develop and run Azure Functions locally
33
description: Learn how to code and test Azure Functions on your local computer before you run them on Azure Functions.
44
ms.topic: conceptual
55
zone_pivot_groups: programming-languages-set-functions
6-
ms.date: 02/24/2025
6+
ms.date: 10/06/2025
77
---
88

99
# Code and test Azure Functions locally
@@ -133,6 +133,19 @@ The following application settings can be included in the **`Values`** array whe
133133
|**`FUNCTIONS_WORKER_RUNTIME`** | `dotnet`<br/>`dotnet-isolated`<br/>`node`<br/>`java`<br/>`powershell`<br/>`python`| Indicates the targeted language of the Functions runtime. Required for version 2.x and higher of the Functions runtime. This setting is generated for your project by Core Tools. To learn more, see the [`FUNCTIONS_WORKER_RUNTIME`](functions-app-settings.md#functions_worker_runtime) reference.|
134134
| **`FUNCTIONS_WORKER_RUNTIME_VERSION`** | `~7` |Indicates to use PowerShell 7 when running locally. If not set, then PowerShell Core 6 is used. This setting is only used when running locally. The PowerShell runtime version is determined by the `powerShellVersion` site configuration setting, when it runs in Azure, which can be [set in the portal](functions-reference-powershell.md#changing-the-powershell-version). |
135135

136+
::: zone pivot="programming-language-javascript,programming-language-typescript"
137+
To learn how to use values from the `values` array as environment variables in your function code, see [Environment variables](functions-reference-node.md#environment-variables) in the developer guide.
138+
::: zone-end
139+
::: zone pivot="programming-language-java"
140+
To learn how to use values from the `values` array as environment variables in your function code, see [Environment variables](functions-reference-java.md#environment-variables) in the developer guide.
141+
::: zone-end
142+
::: zone pivot="programming-language-powershell"
143+
To learn how to use values from the `values` array as environment variables in your function code, see [Environment variables](functions-reference-powershell.md#environment-variables) in the developer guide.
144+
::: zone-end
145+
::: zone pivot="programming-language-python"
146+
To learn how to use values from the `values` array as environment variables in your function code, see [Environment variables](functions-reference-python.md#environment-variables) in the developer guide.
147+
::: zone-end
148+
136149
## Synchronize settings
137150

138151
When you develop your functions locally, any local settings required by your app must also be present in app settings of the function app to which your code is deployed. You might also need to download current settings from the function app to your local project. While you can [manually configure app settings in the Azure portal](functions-how-to-use-azure-function-app-settings.md?tabs=portal#settings), the following tools also let you synchronize app settings with local settings in your project:

0 commit comments

Comments
 (0)