You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -26,15 +26,15 @@ To view the app settings in your function app, follow these steps:
26
26
27
27
2. In the left pane of your function app, expand **Settings**, select **Environment variables**, and then select the **App settings** tab.
28
28
29
-
:::image type="content" source="./media/functions-how-to-use-azure-function-app-settings/azure-function-app-main.png" alt-text="Screen shot that how to select the App settings page in a function app.":::
29
+
:::image type="content" source="./media/functions-how-to-use-azure-function-app-settings/azure-function-app-main.png" alt-text="Screen shot that how to select the App settings page in a function app." lightbox="./media/functions-how-to-use-azure-function-app-settings/azure-function-app-main.png":::
30
30
31
31
## <aname="settings"></a>Work with application settings
32
32
33
33
In addition to the predefined app settings used by Azure Functions, you can create any number of app settings, as required by your function code. For more information, see [App settings reference for Azure Functions](functions-app-settings.md).
34
34
35
35
These settings are stored encrypted. For more information, see [App settings security](security-concepts.md#application-settings).
36
36
37
-
You can manage app settings from the [Azure portal](functions-how-to-use-azure-function-app-settings.md?tabs=portal#settings), and by using the [Azure CLI](functions-how-to-use-azure-function-app-settings.md?tabs=azurecli#settings) and [Azure PowerShell](functions-how-to-use-azure-function-app-settings.md?tabs=powershell#settings). You can also manage app settings from [Visual Studio Code](functions-develop-vs-code.md#application-settings-in-azure) and from [Visual Studio](functions-develop-vs.md#function-app-settings).
37
+
You can manage app settings from the [Azure portal](functions-how-to-use-azure-function-app-settings.md?tabs=portal#settings), and by using the [Azure CLI](functions-how-to-use-azure-function-app-settings.md?tabs=azurecli#settings) and [Azure PowerShell](functions-how-to-use-azure-function-app-settings.md?tabs=powershell#settings). You can also manage app settings from [Visual Studio Code](functions-develop-vs-code.md#application-settings-in-azure) and from [Visual Studio](functions-develop-vs.md#function-app-settings).
38
38
39
39
### [Azure portal](#tab/portal)
40
40
@@ -46,7 +46,7 @@ The **App settings** tab maintains settings that are used by your function app:
46
46
47
47
1. To add a setting, select **+ Add**, and then enter the **Name** and **Value** of the new key-value pair.
48
48
49
-
:::image type="content" source="./media/functions-how-to-use-azure-function-app-settings/azure-function-app-settings-tab.png" alt-text="Screen shot that shows the App settings page in a function app.":::
49
+
:::image type="content" source="./media/functions-how-to-use-azure-function-app-settings/azure-function-app-settings-tab.png" alt-text="Screen shot that shows the App settings page in a function app." lightbox="./media/functions-how-to-use-azure-function-app-settings/azure-function-app-settings-tab.png":::
50
50
51
51
### [Azure CLI](#tab/azure-cli)
52
52
@@ -144,11 +144,11 @@ The following values indicate the plan type:
144
144
145
145
### [Azure portal](#tab/portal)
146
146
147
-
To determine the type of plan used by your function app, see the **App Service Plan** in the **Overview** page of the function app in the [Azure portal](https://portal.azure.com).
147
+
1.To determine the type of plan used by your function app, see the **App Service Plan** in the **Overview** page of the function app in the [Azure portal](https://portal.azure.com).
148
148
149
-
To see the pricing tier, select the name of the **App Service Plan**, and then select **Settings > Properties** from the left pane.
149
+

150
150
151
-

151
+
1. To see the pricing tier, select the name of the **App Service Plan**, and then select **Settings > Properties** from the left pane.
152
152
153
153
### [Azure CLI](#tab/azure-cli)
154
154
@@ -444,7 +444,7 @@ Function apps run in the Azure App Service platform, which maintains them. As su
444
444
445
445
The following matrix indicates portal feature support by hosting plan and operating system:
446
446
447
-
| Feature | Consumption plan | Premium plan | Dedicated plan |
447
+
| Feature | Consumption plan | Premium plan | Dedicated plan |
@@ -464,18 +464,18 @@ For more information about how to work with App Service settings, see [Configure
464
464
465
465
### <a name="editor"></a>App Service editor
466
466
467
-

467
+
The App Service editor is an advanced in-portal editor that you can use to modify JSON configuration files and code files alike. Choosing this option launches a separate browser tab with a basic editor. This editor enables you to integrate with the Git repository, run and debug code, and modify functionappsettings. This editor provides an enhanced development environment for your functions compared with the built-in functioneditor.
468
468
469
-
The App Service editor is an advanced in-portal editor that you can use to modify JSON configuration files and code files alike. Choosing this option launches a separate browser tab with a basic editor. This editor enables you to integrate with the Git repository, run and debug code, and modify functionappsettings. This editor provides an enhanced development environment for your functions compared with the built-in functioneditor.
469
+

470
470
471
471
We recommend that you consider developing your functions on your local computer. When you develop locally and publish to Azure, your project files are read-only in the portal. For more information, see [Code and test Azure Functions locally](functions-develop-local.md).
472
472
473
473
### <a name="console"></a>Console
474
474
475
-

476
-
477
475
The in-portal console is an ideal developer tool when you prefer to interact with your function app from the command line. Common commands include directory and file creation and navigation, as well as executing batch files and scripts.
478
476
477
+

478
+
479
479
When developing locally, we recommend using the [Azure Functions Core Tools](functions-run-local.md) and the [Azure CLI].
0 commit comments