How to run the frontend
Start the Next.js web console for local development.
Prerequisites
- Node.js 22+ and pnpm 9+
- Backend running (for API calls)
Steps
Step 1: Install dependencies
pnpm install # From repo root
Step 2: Start dev server
cd frontend/apps/console
pnpm dev
Verify: opens at http://localhost:3000.
Step 3: Verify API connectivity
The console proxies API calls to the backend. Ensure the backend is running on port 8080 (or configure the proxy in next.config.ts).
What's next
- How to run tests — Frontend test suite
- How to run the backend — Backend dev server