1
1
mirror of https://github.com/chubin/cheat.sh.git synced 2024-11-22 01:40:48 +03:00

Add Redis installation notes (#305)

This commit is contained in:
Igor Chubin 2022-04-18 12:25:39 +02:00
parent 7f769d6f36
commit 5671e7d0d9

View File

@ -98,3 +98,16 @@ cheat.sh needs to access the Internet itself, because it does not have
the necessary data locally. We are working on that how to overcome
this limitation, but for the moment it still exists.
## Mac OS X Notes
### Installing Redis
To install Redis on Mac OS X (using `brew`):
```
$ brew install redis
$ ln -sfv /usr/local/opt/redis/*.plist ~/Library/LaunchAgents
$ launchctl load ~/Library/LaunchAgents/homebrew.mxcl.redis.plist
$ redis-cli ping
PONG
```