Skip to content

Commit

Permalink
adding docs to the README for setting up redis so specs pass. Fixes j…
Browse files Browse the repository at this point in the history
  • Loading branch information
jwoertink committed Sep 26, 2022
1 parent 8502cf7 commit 245ceec
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,24 @@ The `Redis::Client` maintains its own connection pool, so there is no need to ru

Make sure you have a Redis or KeyDB server running locally on port 6379.

Redis must be installed with a stack server for the full text search (`ft`) and time series modules (`ts`) in order for all specs to run.

### With Docker

You can use this for your docker-compose file

```yaml
redis:
image: redis/redis-stack-server
ports:
- "6379:6379"
```
### With Homebrew
Install the [`redis-stack` from homebrew](https://github.com/redis-stack/homebrew-redis-stack)


## Contributing

1. Fork it (<https://github.com/jgaskins/redis/fork>)
Expand Down

0 comments on commit 245ceec

Please sign in to comment.