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
Copy file name to clipboardExpand all lines: articles/azure-app-configuration/enable-dynamic-configuration-aspnet-netfx.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ In this tutorial, you learn how to:
24
24
## Prerequisites
25
25
26
26
- An Azure account with an active subscription. [Create one for free](https://azure.microsoft.com/free/).
27
-
- An App Configuration store. [Create a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
27
+
- An App Configuration store, as shown in the [tutorial for creating a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
Copy file name to clipboardExpand all lines: articles/azure-app-configuration/enable-dynamic-configuration-dotnet-background-service.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ In this tutorial, you learn how to:
26
26
## Prerequisites
27
27
28
28
- An Azure account with an active subscription. [Create one for free](https://azure.microsoft.com/free/).
29
-
- An App Configuration store. [Create a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
29
+
- An App Configuration store, as shown in the [tutorial for creating a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
30
30
-[.NET SDK 6.0 or later](https://dotnet.microsoft.com/download) - also available in the [Azure Cloud Shell](https://shell.azure.com).
Copy file name to clipboardExpand all lines: articles/azure-app-configuration/enable-dynamic-configuration-dotnet.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ In this tutorial, you learn how to:
24
24
## Prerequisites
25
25
26
26
- An Azure account with an active subscription. [Create one for free](https://azure.microsoft.com/free/).
27
-
- An App Configuration store. [Create a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
27
+
- An App Configuration store, as shown in the [tutorial for creating a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
Copy file name to clipboardExpand all lines: articles/azure-app-configuration/how-to-targetingfilter-javascript.md
+19-12Lines changed: 19 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,8 +17,8 @@ In this guide, you'll use the targeting filter to roll out a feature to targeted
17
17
## Prerequisites
18
18
19
19
- An Azure account with an active subscription. [Create one for free](https://azure.microsoft.com/free/).
20
-
- An App Configuration store. [Create a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
21
-
A _Beta_ feature flag with targeting filter. [Create the feature flag](./howto-targetingfilter.md).
20
+
- An App Configuration store, as shown in the [tutorial for creating a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
21
+
-A _Beta_ feature flag with targeting filter. [Create the feature flag](./howto-targetingfilter.md).
22
22
-[LTS versions of Node.js](https://github.com/nodejs/release#release-schedule).
23
23
24
24
## Create a web application with a feature flag
@@ -70,6 +70,7 @@ In this section, you create a web application that uses the [_Beta_ feature flag
70
70
let featureManager;
71
71
72
72
async functioninitializeConfig() {
73
+
// Load feature flags from App Configuration.
73
74
appConfig = await load(appConfigEndpoint, new DefaultAzureCredential(), {
74
75
featureFlagOptions: {
75
76
enabled: true,
@@ -79,8 +80,9 @@ In this section, you create a web application that uses the [_Beta_ feature flag
79
80
}
80
81
});
81
82
82
-
const ffProvider = new ConfigurationMapFeatureFlagProvider(appConfig);
83
-
featureManager = new FeatureManager(ffProvider);
83
+
// Create feature manager with feature flag provider that accesses feature flags from App Configuration.
84
+
featureManager = new FeatureManager(
85
+
new ConfigurationMapFeatureFlagProvider(appConfig));
84
86
}
85
87
86
88
// Use a middleware to refresh the configuration before each request.
@@ -183,9 +185,11 @@ You use ambient targeting context in this tutorial.
183
185
1. When constructing the `FeatureManager`, pass the targeting context accessor to the `FeatureManagerOptions`.
// Use a middleware to refresh the configuration before each request
@@ -311,7 +318,7 @@ initializeConfig()
311
318
312
319
:::image type="content" source="media/how-to-targetingfilter-javascript/beta-disabled.png" alt-text="Screenshot of the app, showing the default greeting message.":::
313
320
314
-
1. Use `userId` query parameter in the url to specify the user ID. Visit `localhost:8080/[email protected]`. You see the beta page, because `[email protected]` is specified as a targeted user.
321
+
1. 1. Add `userId` as a query parameter in the URL to specify the user ID. Visit `localhost:8080/[email protected]`. You see the beta page, because `[email protected]` is specified as a targeted user.
315
322
316
323
:::image type="content" source="media/how-to-targetingfilter-javascript/beta-enabled.png" alt-text="Screenshot of the app, showing the beta page.":::
Copy file name to clipboardExpand all lines: articles/azure-app-configuration/howto-chat-completion-config.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ Chat completion is an AI capability that enables models to generate conversation
16
16
17
17
## Prerequisites
18
18
- An Azure account with an active subscription. [Create one for free](https://azure.microsoft.com/free)
19
-
- An App Configuration store. [Create a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
19
+
- An App Configuration store, as shown in the [tutorial for creating a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
Copy file name to clipboardExpand all lines: articles/azure-app-configuration/howto-create-snapshots.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ In this article, learn how to create, use and manage snapshots in Azure App Conf
14
14
15
15
## Prerequisites
16
16
17
-
- An App Configuration store. [Create a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
17
+
- An App Configuration store, as shown in the [tutorial for creating a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
18
18
- "DataOwner" role in the App Configuration store. Details on required [role and permissions for snapshots](./concept-snapshots.md)
- An App Configuration store. [Create a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
65
+
- An App Configuration store, as shown in the [tutorial for creating a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
66
66
- This tutorial requires version 2.10.0 or later of the Azure CLI. If using Azure Cloud Shell, the latest version is already installed.
Copy file name to clipboardExpand all lines: articles/azure-app-configuration/howto-targetingfilter-aspnet-core.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ In this guide, you'll use the targeting filter to roll out a feature to targeted
19
19
## Prerequisites
20
20
21
21
- An Azure account with an active subscription. [Create one for free](https://azure.microsoft.com/free/).
22
-
- An App Configuration store. [Create a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
22
+
- An App Configuration store, as shown in the [tutorial for creating a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
23
23
- A feature flag with targeting filter. [Create the feature flag](./howto-targetingfilter.md).
24
24
-[.NET SDK 6.0 or later](https://dotnet.microsoft.com/download).
0 commit comments