Web / Getting started
Local setup
Install the workspace and run the local reference flow.
Prerequisites
Use Node.js 22 or newer and the pnpm version declared in the root package.json (currently 11.19.0). Run the following commands from your supastack repository root. Keep the generated .env file local; it must not be committed.
Prepare the workspace
Copy the example environment file, then install the workspace dependencies. On Windows PowerShell, use Copy-Item .env.example .env for the first command. If .env already exists, review it instead of overwriting your configuration.
cp .env.example .env
pnpm installRun the local checks
The local verification command runs lint, types, deterministic tests, builds, and the browser suites. PR tests use fake/local adapters and do not call billable providers.
pnpm verify:local
pnpm devExplore the web app
Use the local URL printed by Next.js. The public homepage is at /. Open /dashboard for the reference interface, /auth for sign-in, and /settings for profile settings.
A production-style reference environment needs migrated Postgres and configured integrations. If a check requires external infrastructure, report that gate separately rather than substituting a local result for it.