Skip to content

Commit 452f829

Browse files
committed
Update use-variant-feature-flags-python.md
1 parent f94a907 commit 452f829

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

articles/azure-app-configuration/use-variant-feature-flags-python.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.topic: how-to
1111
ms.date: 12/02/2024
1212
---
1313

14-
# Tutorial: Use variant feature flags in Azure App Configuration
14+
# Use variant feature flags application
1515

1616
In this tutorial, you use a variant feature flag to manage experiences for different user segments in an example application, *Quote of the Day*. You utilize the variant feature flag created in [Use variant feature flags](./use-variant-feature-flags.md). Before proceeding, ensure you create the variant feature flag named *Greeting* in your App Configuration store.
1717

@@ -36,7 +36,7 @@ In this tutorial, you use a variant feature flag to manage experiences for diffe
3636
.\venv\Scripts\Activate
3737
```
3838

39-
1. Install the required packages. The latest preview versions of `azure-appconfiguration-provider`, and `featuremanagement` are required for variant feature flags.
39+
1. Install the required packages. The latest versions of `azure-appconfiguration-provider`, and `featuremanagement` are required for variant feature flags.
4040

4141
```bash
4242
pip install flask azure-appconfiguration-provider==2.0.0b3 azure-identity featuremanagement[AzureMonitor]==2.0.0b3 flask-login flask_sqlalchemy flask_bcrypt
@@ -260,7 +260,7 @@ In this tutorial, you use a variant feature flag to manage experiences for diffe
260260
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
261261
<title>QuoteOfTheDay</title>
262262
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
263-
<link rel="stylesheet" href="{{ url_for('static', filename='css/site.css') }}">
263+
<link rel="stylesheet" href="{{ url_for('static', filename='site.css') }}">
264264
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
265265
</head>
266266
<body>
@@ -362,9 +362,7 @@ In this tutorial, you use a variant feature flag to manage experiences for diffe
362362
363363
1. Create a new folder named *static* in the *QuoteOfTheDay* folder.
364364
365-
1. Create a new folder named *css* in the *static* folder.
366-
367-
1. Create a new file named *site.css* in the *css* folder.
365+
1. Create a new file named *site.css* in the *static* folder.
368366
369367
```css
370368
html {
@@ -458,7 +456,7 @@ In this tutorial, you use a variant feature flag to manage experiences for diffe
458456
459457
### Build and run the app
460458
461-
1. Set an environment variable. Set the environment variable named **Endpoint** to the endpoint of your App Configuration store found under the *Overview* of your store in the Azure portal.
459+
1. Set an environment variable. Set the environment variable named **AzureAppConfigurationEndpoint** to the endpoint of your App Configuration store found under the *Overview* of your store in the Azure portal.
462460
463461
If you use the Windows command prompt, run the following command and restart the command prompt to allow the change to take effect:
464462

0 commit comments

Comments
 (0)