From af0111d2ea9a62b37357b3ad846b3b53bc91d8f5 Mon Sep 17 00:00:00 2001 From: Egor Aristov Date: Sun, 23 Feb 2025 17:03:36 +0300 Subject: [PATCH] readme --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a731d48..92a46e8 100644 --- a/README.md +++ b/README.md @@ -64,13 +64,18 @@ Each worker can process 1 page at a time, so to scale you should run multiple wo ## Development -You need Go 1.23 (most of application), Node.js 20 (frontend) and Nats server. +You need +- Go 1.23 (most of application), +- Node.js 20 (frontend) +- Nats (with jetstream) +- Redis Instaling dependencies example for MacOS: ```bash brew install go@1.23 brew install node@20 +brew install redis brew install nats-server # Don't use brew services to manage nats because it lacks config support go mod download cd frontend/wizard-vue && npm install