Quick Start
Web
Get the RawStack web frontend up and running locally.
Prerequisites
- Node.js 22+
- API running locally (see API quick start)
Steps
1. Install dependencies
cd apps/web
npm install2. Configure environment
cp .env.dist .env.localSet NEXT_PUBLIC_API_URL=http://localhost:3001/v1.
3. Start the dev server
npm run devThe web app is available at http://localhost:3000 with Turbopack hot reload.
Find out more about the web frontend by reading the in-depth deep dive.