You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/create/aws/chatapp/index-chatapp.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ slug: /create/aws/chatapp
6
6
authors: [ajeet]
7
7
---
8
8
9
-
importAuthorsfrom'@site/src/theme/Authors';
9
+
importAuthorsfrom'@theme/Authors';
10
10
11
11
<AuthorsfrontMatter={frontMatter} />
12
12
@@ -47,7 +47,7 @@ Choose AWS as the Cloud vendor while creating your new subscription. While creat
47
47
48
48

49
49
50
-
:::info TIP
50
+
:::tip
51
51
You don't need to create an AWS account for setting up your Redis database. Redis Enterprise Cloud on AWS is a fully managed database-as-a-service trusted by thousands of customers for high performance, infinite scalability, true high availability, and best-in-class support.
@@ -103,30 +103,30 @@ The demo data initialization is handled in multiple steps:
103
103
104
104
#### Creating of demo users
105
105
106
-
We create a new user id: INCR total_users. Then we set a user ID lookup key by user name: e.g.
106
+
We create a new user id: INCR total_users. Then we set a user ID lookup key by user name: e.g.
107
107
108
108
```
109
109
SET username:nick user:1
110
110
```
111
111
112
112
And finally, the rest of the data is written to the hash set: e.g. HSET user:1 username "nick" password "bcrypt_hashed_password".
113
113
114
-
Additionally, each user is added to the default "General" room.
115
-
For handling rooms for each user, we have a set that holds the room ids. Here's an example command of how to add the room:
114
+
Additionally, each user is added to the default "General" room.
115
+
For handling rooms for each user, we have a set that holds the room ids. Here's an example command of how to add the room:
116
116
117
117
```
118
118
SADD user:1:rooms "0"
119
119
```
120
120
121
121
Populate private messages between users. At first, private rooms are created: if a private room needs to be established, for each user a room id: room:1:2 is generated, where numbers correspond to the user ids in ascending order.
122
122
123
-
E.g. Create a private room between 2 users:
123
+
E.g. Create a private room between 2 users:
124
124
125
125
```
126
126
SADD user:1:rooms 1:2 and SADD user:2:rooms 1:2
127
127
```
128
128
129
-
Then we add messages to this room by writing to a sorted set:
129
+
Then we add messages to this room by writing to a sorted set:
Copy file name to clipboardExpand all lines: docs/create/aws/redis-on-aws/index-redis-on-aws.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ slug: /create/aws/redis-on-aws
6
6
authors: [ajeet]
7
7
---
8
8
9
-
importAuthorsfrom'@site/src/theme/Authors';
9
+
importAuthorsfrom'@theme/Authors';
10
10
11
11
<AuthorsfrontMatter={frontMatter} />
12
12
@@ -18,7 +18,7 @@ Follow the below steps to setup Redis Enterprise Cloud hosted over AWS Cloud:
18
18
19
19
Create your free <ahref="https://redis.com/try-free/"target="_blank"rel="noopener">Redis Enterprise Cloud account</a>. Once you click on “Get Started”, you will receive an email with a link to activate your account and complete your signup process.
20
20
21
-
:::info TIP
21
+
:::tip
22
22
For a limited time, use **TIGER200** to get **$200** credits on Redis Enterprise Cloud and try all the advanced capabilities!
23
23
24
24
:tada:[Click here to sign up](https://redis.com/try-free)
Copy file name to clipboardExpand all lines: docs/create/aws/slackbot/index-slackbot.mdx
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ slug: /create/aws/slackbot
6
6
authors: [ajeet]
7
7
---
8
8
9
-
importAuthorsfrom'@site/src/theme/Authors';
9
+
importAuthorsfrom'@theme/Authors';
10
10
11
11
<AuthorsfrontMatter={frontMatter} />
12
12
@@ -307,7 +307,11 @@ You can find the suitable release from [http://www.graphicsmagick.org/download.h
307
307
308
308
#### Nodejs
309
309
310
-
Note: Please follow all the steps in [python-backend/README.md](https://github.com/redis-developer/Reeko-Slack-Bot/blob/master/python-backend/README.md) first.
310
+
:::note
311
+
312
+
Please follow all the steps in [python-backend/README.md](https://github.com/redis-developer/Reeko-Slack-Bot/blob/master/python-backend/README.md) first.
313
+
314
+
:::
311
315
312
316
Copy the AWS credentials from the [python-backend/.env](https://github.com/redis-developer/Reeko-Slack-Bot/blob/master/python-backend/README.md) to the [config.json](https://github.com/redis-developer/Reeko-Slack-Bot/blob/master/nodejs-backend/src/config/config.json) file.
Copy file name to clipboardExpand all lines: docs/create/aws/terraform/index-terraform.mdx
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ slug: /create/aws/terraform
6
6
authors: [ajeet, rahul]
7
7
---
8
8
9
-
importAuthorsfrom'@site/src/theme/Authors';
9
+
importAuthorsfrom'@theme/Authors';
10
10
11
11
<AuthorsfrontMatter={frontMatter} />
12
12
@@ -112,7 +112,11 @@ Within the block body (between { and }) are query constraints defined by the dat
112
112
113
113
In order to set up authentication with the Redis Enterprise Cloud provider, a programmatic API key must be generated for Redis Enterprise Cloud. The Redis Enterprise Cloud documentation contains the most up-to-date instructions for creating and managing your key(s) and IP access.
114
114
115
-
Please note that Flexible and Annual Redis Enterprise Cloud subscriptions can leverage a RESTful API that permits operations against a variety of resources, including servers, services, and related infrastructure. The REST API is not supported for Fixed or Free subscriptions.
115
+
:::note
116
+
117
+
Flexible and Annual Redis Enterprise Cloud subscriptions can leverage a RESTful API that permits operations against a variety of resources, including servers, services, and related infrastructure. The REST API is not supported for Fixed or Free subscriptions.
118
+
119
+
:::
116
120
117
121
```
118
122
provider "rediscloud" { } # Example resource configuration
0 commit comments