Discover books, shows, and movies at your level. Track your progress by filling your Shelf with what you find, and share with other language learners. *No dusting required. shlf.space

docs: add docs on redis dependency

Signed-off-by: brookjeynes <me@brookjeynes.dev>

+6
+6
docs/hacking.md
··· 25 25 curl -sLo ./static/files/alpinejs.min.js https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js 26 26 ``` 27 27 28 + You will need to start a redis instance - using docker can simplify this 29 + process greatly: 30 + ```bash 31 + docker run -d --name shlf-redis -p 6379:6379 redis:latest 32 + ``` 33 + 28 34 To run: 29 35 ```bash 30 36 SHLF_DEV=true go run cmd/server/main.go