Quick Start
Web
Get the RawStack web frontend up and running locally.
Prerequisites
- Node.js 20+
- API running locally (see API quick start)
Steps
1. Install dependencies
cd apps/web
npm install2. Configure environment
cp .env.example .env.localSet NEXT_PUBLIC_API_URL=http://localhost:3001.
3. Start the dev server
npm run devThe web app is available at http://localhost:3000 with Turbopack hot reload.