From 5671e7d0d91479dae15c21130470749ae36fe301 Mon Sep 17 00:00:00 2001 From: Igor Chubin Date: Mon, 18 Apr 2022 12:25:39 +0200 Subject: [PATCH] Add Redis installation notes (#305) --- doc/standalone.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/doc/standalone.md b/doc/standalone.md index 4b60401..25fc8fa 100644 --- a/doc/standalone.md +++ b/doc/standalone.md @@ -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 +```