Skip to content

Commit 1b1bf83

Browse files
docs: Update README to include Redis setup instructions and Docker Compose usage
1 parent a7ecd12 commit 1b1bf83

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ Go implementation of the Runner Controller.
99
1. GoLang - Install GoLang.
1010
2. MinIO - Start a MinIO server instance.
1111
3. CockroachDB - Start a CockroachDB instance.
12+
4. Redis - Start a Redis instance.
13+
14+
(or) Use Docker Compose to start the services.
15+
16+
```sh
17+
docker compose up -d
18+
```
1219

1320
### Installation
1421

@@ -26,11 +33,11 @@ export DATABASE_URL=<cockroachdb_url>
2633
export MINIO_ENDPOINT=<minio_endpoint>
2734
export MINIO_ACCESS_KEY_ID=<minio_access_key>
2835
export MINIO_SECRET_KEY=<minio_secret_key>
29-
export RABBITMQ_URL=<rabbitmq_url>
3036
export FRONTEND_URL=<frontend_url>
3137
export HTTP_PORT=<http_port>
3238
export AUTH_GRPC_ADDRESS=<auth_grpc_address>
3339
export REDIS_URL=<redis_url>
40+
export REDIS_QUEUE_NAME=<redis_queue_name>
3441
```
3542

3643
3. Run the following command to start the server.

0 commit comments

Comments
 (0)