Skip to content

Commit cc04d9e

Browse files
author
Simon Prickett
committed
Changed environmental variables to environment variables.
1 parent f882b21 commit cc04d9e

File tree

13 files changed

+22
-22
lines changed

13 files changed

+22
-22
lines changed

docs/create/aws/bidding-on-aws/index-bidding-on-aws.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ The 'npm install' is a npm cli-command that does the predefined thing i.e instal
106106
npm install
107107
```
108108

109-
### Step 4. Setting up environmental variable
109+
### Step 4. Setting up environment variables
110110

111111

112112

docs/create/heroku/herokunodejs/index-herokunodejs.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ https://rocky-lowlands-06306.herokuapp.com/ | https://git.heroku.com/rocky-lowla
7373

7474

7575

76-
### Step 6. Setting up Environmental variable
76+
### Step 6. Setting up environment variables
7777

78-
Go to the Heroku dashboard, click "Settings" and set REDIS_ENDPOINT_URI and REDIS_PASSWORD under the Config Vars.
78+
Go to the Heroku dashboard, click "Settings" and set `REDIS_ENDPOINT_URI` and `REDIS_PASSWORD` under the Config Vars.
7979
Refer to Step 1 for the correct values to use.
8080

8181
![heroku](heroku_app1_env.png)

docs/create/heroku/portal/index-heroku.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ Run the commands below to get a functioning Git repository that contains a simpl
102102
![heroku](heroku_app01.png)
103103

104104

105-
#### Step 6. Setting up Environmental variable
105+
#### Step 6. Setting up environment variables
106106

107107
[Follow this link to create a Redis Enterprise Cloud](/create/rediscloud) subscription and database as shown below:
108-
Go to the Heroku dashboard, click "Settings" and set REDIS_ENDPOINT_URI and REDIS_PASSWORD under the Config Vars.(Please note that the database endpoint is unique and might be different in your case. Please enter the values accordingly)
108+
Go to the Heroku dashboard, click "Settings" and set `REDIS_ENDPOINT_URI` and `REDIS_PASSWORD` under the Config Vars.(Please note that the database endpoint is unique and might be different in your case. Please enter the values accordingly)
109109

110110
Refer to [Step 1](/create/heroku/portal#step-1-create-redis-enterprise-cloud) for the correct values to use.
111111

docs/howtos/analytics/index-analytics.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ This tutorial shows a basic analytics dashboard app that uses Redis Bitmap writt
3333
### Step 3. Setting up backend
3434

3535

36-
First we will be settin up environmental variables
36+
First we will be setting up some environment variables.
3737

38-
Go to /server folder (cd ./server) and then execute the below command:
38+
Go to /server folder (cd ./server) and then execute the following command:
3939

4040
```bash
4141
cp .env.example .env

docs/howtos/hackernews/index-hackernews.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Save the database endpoint URL and password for our future reference
4141
cd redis-hacker-news-demo
4242
```
4343

44-
### Step 4. Setting up environmental variable
44+
### Step 4. Setting up environment variables
4545

4646
Copy .env.sample to .env and provide the values as shown below:
4747

docs/howtos/herokujava/index-herokujava.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ https://hidden-woodland-03996.herokuapp.com/ | https://git.heroku.com/hidden-woo
5959
```
6060

6161

62-
### Step 6. Setting up Environmental variable
62+
### Step 6. Setting up environment variables
6363

64-
Go to Heroku dashboard, click "Settings" and set REDIS_ENDPOINT_URI and REDIS_PASSWORD under the Config Vars.
65-
Refer to Step 1 for the reference.
64+
Go to Heroku dashboard, click "Settings" and set `REDIS_ENDPOINT_URI` and `REDIS_PASSWORD` under the Config Vars.
65+
Refer to Step 1 for reference.
6666

6767
![heroku](heroku_app1_env.png)
6868

docs/howtos/herokunodejs/index-herokunodejs.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ https://rocky-lowlands-06306.herokuapp.com/ | https://git.heroku.com/rocky-lowla
6464

6565

6666

67-
### Step 6. Setting up Environmental variable
67+
### Step 6. Setting up environment variables
6868

6969
Go to Heroku dashboard, click "Settings" and set REDIS_ENDPOINT_URI and REDIS_PASSWORD under the Config Vars.
7070
Refer to Step 1 for the reference.

docs/howtos/herokupython/index-herokupython.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ Creating app... done, ⬢ fast-reef-76278
6363
https://fast-reef-76278.herokuapp.com/ | https://git.heroku.com/fast-reef-76278.git
6464
```
6565

66-
### Step 6. Setting up Environmental variable
66+
### Step 6. Setting up environment variables
6767

68-
Go to Heroku dashboard, click "Settings" and set REDIS_ENDPOINT_URI and REDIS_PASSWORD under the Config Vars.
69-
Refer to Step 1 for the reference.
68+
Go to Heroku dashboard, click "Settings" and set `REDIS_ENDPOINT_URI` and `REDIS_PASSWORD` under the Config Vars.
69+
Refer to Step 1 for reference.
7070

7171
![heroku](heroku_app1_env.png)
7272

docs/howtos/ratelimiting/index-ratelimiting.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,9 +214,9 @@ docker network create global
214214
docker-compose up -d --build
215215
```
216216

217-
### Step 4. Setting up an environmental variable
217+
### Step 4. Setting up environment variables
218218

219-
Open directory server (cd server): copy .env.example to create .env and provide the values for environment variables (if needed).
219+
Open directory server (`cd server``): copy `.env.example` to create `.env` and provide the values for environment variables (if needed).
220220

221221

222222
```

docs/howtos/redisgraph/redisgraphmovies/index-redisgraphmovies.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ Ensure that Docker container is up and runnig
6060
git clone https://github.com/redis-developer/basic-redisgraph-movie-demo-app-nodejs
6161
```
6262

63-
### Step 5. Setting up environmental variable
63+
### Step 5. Setting up environment variables
6464

65-
Copy .env.sample to .env and add the below details:
65+
Copy `.env.sample` to `.env` and add the following details:
6666

6767
```bash
6868
REDIS_ENDPOINT_URL = "Redis server URI"

0 commit comments

Comments
 (0)