From f87766f4f8040fe3dbccdbcc3c11d48ff3fe4029 Mon Sep 17 00:00:00 2001 From: Max Baker Date: Thu, 21 Sep 2023 12:30:48 -0700 Subject: [PATCH] add Redis local section --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/README.md b/README.md index 53c9bb55..1bf79105 100644 --- a/README.md +++ b/README.md @@ -120,6 +120,33 @@ cd mwoffliner-1.13.0 # or whatever version you downloaded npm i npm run mwoffliner -- --help ``` +### Local (non-root) Redis Install + +You may wish to install the prerequesit Redis locally in order to run the tool. See https://github.com/redis/redis/tree/unstable and https://redis.io/docs/getting-started/installation/install-redis-from-source/ for more details. + +1. Get and unzip Redis Locally + +``` +wget https://download.redis.io/redis-stable.tar.gz +tar xvfz redis-stable.tar.gz +``` + +2. Build Redis Locally + +``` +cd redis-stable/src +make PREFIX=$HOME USE_JEMALLOC=no +``` + +3. Run Redis Locally + +You'll need to do this in a separate window or run it in the background. + +``` +cd redis-stable/src +./redis-server +``` + ## API