Skip to content

Commit 3fe1e4f

Browse files
use endpoint as example
1 parent 81d91c8 commit 3fe1e4f

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -304,34 +304,34 @@ run().catch(console.error);
304304

305305
### [Windows command prompt](#tab/windowscommandprompt)
306306

307-
To run the app locally using the Windows command prompt, run the following command and replace `<app-configuration-store-connection-string>` with the connection string of your app configuration store:
307+
To run the app locally using the Windows command prompt, run the following command and replace `<app-configuration-store-endpoint>` with the endpoint of your app configuration store:
308308

309309
```cmd
310-
setx AZURE_APPCONFIG_CONNECTION_STRING "<app-configuration-store-connection-string>"
310+
setx AZURE_APPCONFIG_ENDPOINT "<app-configuration-store-endpoint>"
311311
```
312312
313313
### [PowerShell](#tab/powershell)
314314
315-
If you use Windows PowerShell, run the following command and replace `<app-configuration-store-connection-string>` with the connection string of your app configuration store:
315+
If you use Windows PowerShell, run the following command and replace `<app-configuration-store-endpoint>` with the endpoint of your app configuration store:
316316
317317
```azurepowershell
318-
$Env:AZURE_APPCONFIG_CONNECTION_STRING = "<app-configuration-store-connection-string>"
318+
$Env:AZURE_APPCONFIG_ENDPOINT = "<app-configuration-store-endpoint>"
319319
```
320320
321321
### [macOS](#tab/unix)
322322
323-
If you use macOS, run the following command and replace `<app-configuration-store-connection-string>` with the connection string of your app configuration store:
323+
If you use macOS, run the following command and replace `<app-configuration-store-endpoint>` with the endpoint of your app configuration store:
324324
325325
```console
326-
export AZURE_APPCONFIG_CONNECTION_STRING='<app-configuration-store-connection-string>'
326+
export AZURE_APPCONFIG_ENDPOINT='<app-configuration-store-endpoint>'
327327
```
328328
329329
### [Linux](#tab/linux)
330330
331-
If you use Linux, run the following command and replace `<app-configuration-store-connection-string>` with the connection string of your app configuration store:
331+
If you use Linux, run the following command and replace `<app-configuration-store-endpoint>` with the endpoint of your app configuration store:
332332
333333
```console
334-
export AZURE_APPCONFIG_CONNECTION_STRING='<app-configuration-store-connection-string>'
334+
export AZURE_APPCONFIG_ENDPOINT='<app-configuration-store-endpoint>'
335335
```
336336
337337
---
@@ -343,31 +343,31 @@ run().catch(console.error);
343343
Using the Windows command prompt, restart the command prompt to allow the change to take effect and run the following command:
344344
345345
```cmd
346-
echo %AZURE_APPCONFIG_CONNECTION_STRING%
346+
echo %AZURE_APPCONFIG_ENDPOINT%
347347
```
348348
349349
### [PowerShell](#tab/powershell)
350350
351351
If you use Windows PowerShell, run the following command:
352352
353353
```azurepowershell
354-
$Env:AZURE_APPCONFIG_CONNECTION_STRING
354+
$Env:AZURE_APPCONFIG_ENDPOINT
355355
```
356356
357357
### [macOS](#tab/unix)
358358
359359
If you use macOS, run the following command:
360360
361361
```console
362-
echo "$AZURE_APPCONFIG_CONNECTION_STRING"
362+
echo "$AZURE_APPCONFIG_ENDPOINT"
363363
```
364364
365365
### [Linux](#tab/linux)
366366
367367
If you use Linux, run the following command:
368368
369369
```console
370-
echo "$AZURE_APPCONFIG_CONNECTION_STRING"
370+
echo "$AZURE_APPCONFIG_ENDPOINT"
371371
```
372372
373373
---

0 commit comments

Comments
 (0)