Skip to content

Commit 7e479f6

Browse files
update
1 parent cdb0a54 commit 7e479f6

11 files changed

+31
-31
lines changed

articles/azure-app-configuration/enable-dynamic-configuration-dotnet-background-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ You use the [.NET command-line interface (CLI)](/dotnet/core/tools/) to create a
183183
If you use PowerShell, run the following command:
184184
185185
```powershell
186-
$Env:Endpoint = <endpoint-of-your-app-configuration-store>
186+
$Env:Endpoint = "<endpoint-of-your-app-configuration-store>"
187187
```
188188
189189
If you use macOS or Linux, run the following command:

articles/azure-app-configuration/enable-dynamic-configuration-dotnet-core-push-refresh.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -185,31 +185,31 @@ The `ProcessPushNotification` method takes in a `PushNotification` object contai
185185
To build and run the app locally using the Windows command prompt, run the following command and restart the command prompt to allow the change to take effect:
186186

187187
```console
188-
setx AppConfigurationConnectionString <connection-string-of-your-app-configuration-store>
188+
setx AppConfigurationConnectionString "<connection-string-of-your-app-configuration-store>"
189189
```
190190

191191
### [PowerShell](#tab/powershell)
192192

193193
If you use Windows PowerShell, run the following command:
194194

195195
```powershell
196-
$Env:AppConfigurationConnectionString = <connection-string-of-your-app-configuration-store>
196+
$Env:AppConfigurationConnectionString = "<connection-string-of-your-app-configuration-store>"
197197
```
198198

199199
### [macOS](#tab/unix)
200200

201201
If you use macOS, run the following command:
202202

203203
```console
204-
export AppConfigurationConnectionString=<connection-string-of-your-app-configuration-store>
204+
export AppConfigurationConnectionString='<connection-string-of-your-app-configuration-store>'
205205
```
206206

207207
### [Linux](#tab/linux)
208208

209209
If you use Linux, run the following command:
210210

211211
```console
212-
export AppConfigurationConnectionString=<connection-string-of-your-app-configuration-store>
212+
export AppConfigurationConnectionString='<connection-string-of-your-app-configuration-store>'
213213
```
214214

215215
---

articles/azure-app-configuration/enable-dynamic-configuration-java-spring-push-refresh.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ Event Grid Web Hooks require validation on creation. You can validate by followi
161161
If you use macOS or Linux, run the following command:
162162

163163
```bash
164-
export APP_CONFIGURATION_ENDPOINT=<endpoint-of-your-app-configuration-store>
164+
export APP_CONFIGURATION_ENDPOINT='<endpoint-of-your-app-configuration-store>'
165165
```
166166

167167
### [Connection string](#tab/connection-string)
@@ -182,7 +182,7 @@ Event Grid Web Hooks require validation on creation. You can validate by followi
182182
If you use macOS or Linux, run the following command:
183183

184184
```bash
185-
export APP_CONFIGURATION_CONNECTION_STRING=<connection-string-of-your-app-configuration-store>
185+
export APP_CONFIGURATION_CONNECTION_STRING='<connection-string-of-your-app-configuration-store>'
186186
```
187187
---
188188

articles/azure-app-configuration/quickstart-dotnet-core-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ You can connect to your App Configuration store using Microsoft Entra ID (recomm
125125
If you use PowerShell, run the following command:
126126
127127
```powershell
128-
$Env:Endpoint = <endpoint-of-your-app-configuration-store>
128+
$Env:Endpoint = "<endpoint-of-your-app-configuration-store>"
129129
```
130130
131131
If you use macOS or Linux, run the following command:

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -136,19 +136,19 @@ Add a feature flag called *Beta* to the App Configuration store and leave **Labe
136136
If you use the Windows command prompt, run the following command and restart the command prompt to allow the change to take effect:
137137

138138
```cmd
139-
setx AZURE_APPCONFIG_ENDPOINT <endpoint-of-your-app-configuration-store>
139+
setx AZURE_APPCONFIG_ENDPOINT "<endpoint-of-your-app-configuration-store>"
140140
```
141141

142142
If you use PowerShell, run the following command:
143143

144144
```powershell
145-
$Env:AZURE_APPCONFIG_ENDPOINT = <endpoint-of-your-app-configuration-store>
145+
$Env:AZURE_APPCONFIG_ENDPOINT = "<endpoint-of-your-app-configuration-store>"
146146
```
147147

148148
If you use macOS or Linux, run the following command:
149149

150150
```bash
151-
export AZURE_APPCONFIG_ENDPOINT=<endpoint-of-your-app-configuration-store>
151+
export AZURE_APPCONFIG_ENDPOINT='<endpoint-of-your-app-configuration-store>'
152152
```
153153

154154
### [Connection string](#tab/connection-string)
@@ -157,19 +157,19 @@ Add a feature flag called *Beta* to the App Configuration store and leave **Labe
157157
If you use the Windows command prompt, run the following command and restart the command prompt to allow the change to take effect:
158158

159159
```cmd
160-
setx AZURE_APPCONFIG_CONNECTION_STRING <connection-string-of-your-app-configuration-store>
160+
setx AZURE_APPCONFIG_CONNECTION_STRING "<connection-string-of-your-app-configuration-store>"
161161
```
162162

163163
If you use PowerShell, run the following command:
164164

165165
```powershell
166-
$Env:AZURE_APPCONFIG_CONNECTION_STRING = <connection-string-of-your-app-configuration-store>
166+
$Env:AZURE_APPCONFIG_CONNECTION_STRING = "<connection-string-of-your-app-configuration-store>"
167167
```
168168

169169
If you use macOS or Linux, run the following command:
170170

171171
```bash
172-
export AZURE_APPCONFIG_CONNECTION_STRING=<connection-string-of-your-app-configuration-store>
172+
export AZURE_APPCONFIG_CONNECTION_STRING='<connection-string-of-your-app-configuration-store>'
173173
```
174174
175175
---

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ When starting the application, a browser window will open to authenticate the us
7979
To build and run the app locally using the Windows command prompt, run the following command:
8080

8181
```console
82-
setx APP_CONFIGURATION_ENDPOINT <endpoint-of-your-app-configuration-store>
82+
setx APP_CONFIGURATION_ENDPOINT "<endpoint-of-your-app-configuration-store>"
8383
```
8484

8585
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.
@@ -97,7 +97,7 @@ When starting the application, a browser window will open to authenticate the us
9797
If you use macOS, run the following command:
9898

9999
```console
100-
export APP_CONFIGURATION_ENDPOINT=<endpoint-of-your-app-configuration-store>
100+
export APP_CONFIGURATION_ENDPOINT='<endpoint-of-your-app-configuration-store>'
101101
```
102102

103103
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.
@@ -107,7 +107,7 @@ When starting the application, a browser window will open to authenticate the us
107107
If you use Linux, run the following command:
108108

109109
```console
110-
export APP_CONFIGURATION_ENDPOINT=<endpoint-of-your-app-configuration-store>
110+
export APP_CONFIGURATION_ENDPOINT='<endpoint-of-your-app-configuration-store>'
111111
```
112112

113113
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.

articles/azure-app-configuration/quickstart-feature-flag-spring-boot.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ To create a new Spring Boot project:
148148
If you use macOS or Linux, run the following command:
149149

150150
```bash
151-
export APP_CONFIGURATION_ENDPOINT=<endpoint-of-your-app-configuration-store>
151+
export APP_CONFIGURATION_ENDPOINT='<endpoint-of-your-app-configuration-store>'
152152
```
153153

154154
### [Connection string](#tab/connection-string)
@@ -169,7 +169,7 @@ To create a new Spring Boot project:
169169
If you use macOS or Linux, run the following command:
170170

171171
```bash
172-
export APP_CONFIGURATION_CONNECTION_STRING=<connection-string-of-your-app-configuration-store>
172+
export APP_CONFIGURATION_CONNECTION_STRING='<connection-string-of-your-app-configuration-store>'
173173
```
174174
---
175175

articles/azure-app-configuration/quickstart-java-spring-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ To use the Spring Cloud Azure Config starter to have your application communicat
167167
1. Set an environment variable named **APP_CONFIGURATION_ENDPOINT**, and set it to the access key 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:
168168

169169
```cmd
170-
setx APP_CONFIGURATION_ENDPOINT <endpoint-of-your-app-configuration-store>
170+
setx APP_CONFIGURATION_ENDPOINT "<endpoint-of-your-app-configuration-store>"
171171
```
172172

173173
If you use Windows PowerShell, run the following command:
@@ -179,7 +179,7 @@ To use the Spring Cloud Azure Config starter to have your application communicat
179179
If you use macOS or Linux, run the following command:
180180

181181
```cmd
182-
export APP_CONFIGURATION_ENDPOINT=<endpoint-of-your-app-configuration-store>
182+
export APP_CONFIGURATION_ENDPOINT='<endpoint-of-your-app-configuration-store>'
183183
```
184184

185185
### Build and run the app locally

articles/azure-app-configuration/quickstart-javascript-provider.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -313,19 +313,19 @@ run().catch(console.error);
313313
If you use the Windows command prompt, run the following command and restart the command prompt to allow the change to take effect:
314314

315315
```cmd
316-
setx AZURE_APPCONFIG_ENDPOINT <endpoint-of-your-app-configuration-store>
316+
setx AZURE_APPCONFIG_ENDPOINT "<endpoint-of-your-app-configuration-store>"
317317
```
318318
319319
If you use PowerShell, run the following command:
320320
321321
```powershell
322-
$Env:AZURE_APPCONFIG_ENDPOINT = <endpoint-of-your-app-configuration-store>
322+
$Env:AZURE_APPCONFIG_ENDPOINT = "<endpoint-of-your-app-configuration-store>"
323323
```
324324
325325
If you use macOS or Linux, run the following command:
326326
327327
```bash
328-
export AZURE_APPCONFIG_ENDPOINT=<endpoint-of-your-app-configuration-store>
328+
export AZURE_APPCONFIG_ENDPOINT='<endpoint-of-your-app-configuration-store>'
329329
```
330330
331331
### [Connection string](#tab/connection-string)
@@ -334,19 +334,19 @@ run().catch(console.error);
334334
If you use the Windows command prompt, run the following command and restart the command prompt to allow the change to take effect:
335335
336336
```cmd
337-
setx AZURE_APPCONFIG_CONNECTION_STRING <connection-string-of-your-app-configuration-store>
337+
setx AZURE_APPCONFIG_CONNECTION_STRING "<connection-string-of-your-app-configuration-store>"
338338
```
339339
340340
If you use PowerShell, run the following command:
341341
342342
```powershell
343-
$Env:AZURE_APPCONFIG_CONNECTION_STRING = <connection-string-of-your-app-configuration-store>
343+
$Env:AZURE_APPCONFIG_CONNECTION_STRING = "<connection-string-of-your-app-configuration-store>"
344344
```
345345
346346
If you use macOS or Linux, run the following command:
347347
348348
```bash
349-
export AZURE_APPCONFIG_CONNECTION_STRING=<connection-string-of-your-app-configuration-store>
349+
export AZURE_APPCONFIG_CONNECTION_STRING='<connection-string-of-your-app-configuration-store>'
350350
```
351351
352352
---

articles/azure-app-configuration/quickstart-python-provider.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ In this section, you will create a console application and load data from your A
150150
If you use macOS or Linux, run the following command:
151151

152152
```bash
153-
export AZURE_APPCONFIG_ENDPOINT=<endpoint-of-your-app-configuration-store>
153+
export AZURE_APPCONFIG_ENDPOINT='<endpoint-of-your-app-configuration-store>'
154154
```
155155

156156
### [Connection string](#tab/connection-string)
@@ -159,7 +159,7 @@ In this section, you will create a console application and load data from your A
159159
If you use the Windows command prompt, run the following command and restart the command prompt to allow the change to take effect:
160160

161161
```cmd
162-
setx AZURE_APPCONFIG_CONNECTION_STRING <connection-string-of-your-app-configuration-store>
162+
setx AZURE_APPCONFIG_CONNECTION_STRING "<connection-string-of-your-app-configuration-store>"
163163
```
164164

165165
If you use PowerShell, run the following command:
@@ -171,7 +171,7 @@ In this section, you will create a console application and load data from your A
171171
If you use macOS or Linux, run the following command:
172172

173173
```bash
174-
export AZURE_APPCONFIG_CONNECTION_STRING=<connection-string-of-your-app-configuration-store>
174+
export AZURE_APPCONFIG_CONNECTION_STRING='<connection-string-of-your-app-configuration-store>'
175175
```
176176
---
177177

0 commit comments

Comments
 (0)