Skip to content

Commit 636a9fe

Browse files
Merge pull request #6 from Ruhul-Quddus-Tamim/redis_instruct
Updated doc for redis
2 parents 87a4c8b + ca641b3 commit 636a9fe

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

README.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<p align="center">
22
<a href="https://skillicons.dev">
3-
<img src="https://skillicons.dev/icons?i=python,sqlite" />
3+
<img src="https://skillicons.dev/icons?i=python,sqlite,redis" />
44
</a>
55
</p>
66

@@ -28,12 +28,32 @@ The project uses the ```WikiTableQuestions``` dataset, which contains various CS
2828

2929
### Prerequisites
3030

31+
- Docker installed on your system ([Download Docker](https://www.docker.com/products/docker-desktop/)).
3132
- Python 3.8 or higher
3233
- OpenAI API Key
3334
- ```wget``` (for data download)
3435

3536
---
3637

38+
### Steps to Set Up Redis Stack
39+
40+
**1. Pull the Redis Stack Docker Image**
41+
42+
Pull the latest Redis Stack image from Docker Hub:
43+
```
44+
docker pull redis/redis-stack-server:latest
45+
```
46+
47+
**2. Run the Redis Stack Container**
48+
49+
Run the Redis Stack container with port 6379 exposed:
50+
51+
```
52+
docker run -d --name redis-stack-server -p 6379:6379 redis/redis-stack-server:latest
53+
```
54+
55+
---
56+
3757
### Data Download
3858

3959
Download the WikiTableQuestions dataset using the following commands:

0 commit comments

Comments
 (0)