Skip to content

Commit 7107506

Browse files
committed
fix: remove exposed Redis credentials from demo file
Replace real Redis URL with password with placeholder values to prevent credential exposure. Use <YOUR_PASSWORD>, <YOUR_ENDPOINT>, and <PORT> placeholders with an example showing the format.
1 parent 747bcdb commit 7107506

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

examples/presentation/DEMO.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@ redisctl cloud database get 2969240:13684622 \
6565

6666
```bash
6767
# Connect using the endpoint and password from above
68-
redis-cli -u redis://default:cozsNl5jC2PsUZq7TWcPmoDSu0QDM41Y@redis-19206.c89.us-east-1-3.ec2.redns.redis-cloud.com:19206
68+
redis-cli -u redis://default:<YOUR_PASSWORD>@<YOUR_ENDPOINT>:<PORT>
69+
70+
# Example: redis-cli -u redis://default:[email protected]:12345
6971

7072
# Test some commands
7173
SET demo:key "Hello from redisctl demo"

0 commit comments

Comments
 (0)