Skip to content

Commit dd69ee4

Browse files
committed
Rename example .env file
1 parent 9d97680 commit dd69ee4

4 files changed

Lines changed: 3 additions & 7 deletions

File tree

demo/README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,6 @@ If you don't have a Microsoft account, there are a couple of options to get a fr
3232

3333
![A screenshot of the application ID of the new app registration](/tutorial/images/aad-application-id.png)
3434

35-
1. Select **Authentication** under **Manage**. Locate the **Implicit grant** section and enable **ID tokens**. Choose **Save**.
36-
37-
![A screenshot of the Implicit grant section](/tutorial/images/aad-implicit-grant.png)
38-
3935
1. Select **Certificates & secrets** under **Manage**. Select the **New client secret** button. Enter a value in **Description** and select one of the options for **Expires** and choose **Add**.
4036

4137
![A screenshot of the Add a client secret dialog](/tutorial/images/aad-new-client-secret.png)
@@ -49,7 +45,7 @@ If you don't have a Microsoft account, there are a couple of options to get a fr
4945

5046
## Configure the sample
5147

52-
1. Rename the `.env.example` file to `.env`.
48+
1. Rename the `example.env` file to `.env`.
5349
1. Edit the `.env` file and make the following changes.
5450
1. Replace `YOUR_APP_ID_HERE` with the **Application Id** you got from the App Registration Portal.
5551
1. Replace `YOUR_APP_PASSWORD_HERE` with the password you got from the App Registration Portal.

qs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sourceDirectory": ".\\demo",
3-
"exampleConfigFile": ".\\graph-tutorial\\.env.example",
3+
"exampleConfigFile": ".\\graph-tutorial\\example.env",
44
"configFile": ".env",
55
"archiveFile": "NodeExpressQuickStart.zip",
66
"zipReadMe": ".\\README.md"

tutorial/04-add-aad-auth.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ In this exercise you will extend the application from the previous exercise to s
44

55
1. Create a new file named `.env` file in the root of your application, and add the following code.
66

7-
:::code language="ini" source="../demo/graph-tutorial/.env.example":::
7+
:::code language="ini" source="../demo/graph-tutorial/example.env":::
88

99
Replace `YOUR_APP_ID_HERE` with the application ID from the Application Registration Portal, and replace `YOUR_APP_SECRET_HERE` with the client secret you generated.
1010

0 commit comments

Comments
 (0)