- Go 1.26+
- Bun 1.x+
backend/: Go API server and review pollerfrontend/: React + Vite app
From the repo root:
cd backend
go mod download
go run ./cmd/serverNotes:
- Uses
backend/config.jsonby default. - API listens on
http://localhost:8080by default.
From the repo root:
cd frontend
bun install
bun devVite will print the local URL in the terminal (http://localhost:5173 by default).