This commit is contained in:
Egor Aristov 2025-02-23 17:03:36 +03:00
parent f56dc77e5a
commit af0111d2ea

View File

@ -64,13 +64,18 @@ Each worker can process 1 page at a time, so to scale you should run multiple wo
## Development ## 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: Instaling dependencies example for MacOS:
```bash ```bash
brew install go@1.23 brew install go@1.23
brew install node@20 brew install node@20
brew install redis
brew install nats-server # Don't use brew services to manage nats because it lacks config support brew install nats-server # Don't use brew services to manage nats because it lacks config support
go mod download go mod download
cd frontend/wizard-vue && npm install cd frontend/wizard-vue && npm install