This commit is contained in:
Egor Aristov 2025-02-23 17:03:36 +03:00
parent b1256f45df
commit a15a3dfead
Signed by: egor3f
GPG Key ID: 40482A264AAEC85F

View File

@ -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