Skip to content

Commit 28f89ab

Browse files
committed
Update quickstart-feature-flag-python.md
1 parent 379cdfb commit 28f89ab

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

articles/azure-app-configuration/quickstart-feature-flag-python.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,16 @@ Add a feature flag called *Beta* to the App Configuration store and leave **Labe
7070
print("Beta is ", feature_manager.is_enabled("Beta"))
7171
```
7272

73+
When starting the application, a broswer window will open to authenticate the user. The user must have at least the `App Configuration Data Reader` role to access the App Configuration store.
74+
7375
1. Set an environment variable named **APP_CONFIGURATION_ENDPOINT**, and set it to the endpoint to your App Configuration store. At the command line, run the following command and restart the command prompt to allow the change to take effect:
7476

7577
### [Windows command prompt](#tab/windowscommandprompt)
7678

7779
To build and run the app locally using the Windows command prompt, run the following command:
7880

7981
```console
80-
setx APP_CONFIGURATION_ENDPOINT "endpoing-of-your-app-configuration-store"
82+
setx APP_CONFIGURATION_ENDPOINT "endpoint-of-your-app-configuration-store"
8183
```
8284

8385
Restart the command prompt to allow the change to take effect. Validate that it's set properly by printing the value of the environment variable.
@@ -87,15 +89,15 @@ Add a feature flag called *Beta* to the App Configuration store and leave **Labe
8789
If you use Windows PowerShell, run the following command:
8890

8991
```azurepowershell
90-
$Env:APP_CONFIGURATION_ENDPOINT = "endpoing-of-your-app-configuration-store"
92+
$Env:APP_CONFIGURATION_ENDPOINT = "endpoint-of-your-app-configuration-store"
9193
```
9294

9395
### [macOS](#tab/unix)
9496

9597
If you use macOS, run the following command:
9698

9799
```console
98-
export APP_CONFIGURATION_ENDPOINT='endpoing-of-your-app-configuration-store'
100+
export APP_CONFIGURATION_ENDPOINT='endpoint-of-your-app-configuration-store'
99101
```
100102

101103
Restart the command prompt to allow the change to take effect. Validate that it's set properly by printing the value of the environment variable.
@@ -105,7 +107,7 @@ Add a feature flag called *Beta* to the App Configuration store and leave **Labe
105107
If you use Linux, run the following command:
106108

107109
```console
108-
export APP_CONFIGURATION_ENDPOINT='endpoing-of-your-app-configuration-store'
110+
export APP_CONFIGURATION_ENDPOINT='endpoint-of-your-app-configuration-store'
109111
```
110112

111113
Restart the command prompt to allow the change to take effect. Validate that it's set properly by printing the value of the environment variable.

0 commit comments

Comments
 (0)