This repository is initialized as a Turborepo monorepo using pnpm workspaces.
Quick start (Windows cmd.exe):
-
Ensure pnpm is available. If you have Node >=16.10 and Corepack enabled:
corepack enable corepack prepare pnpm@latest --activate
Or install pnpm globally:
npm install -g pnpm
-
Install dependencies at the repo root:
pnpm install
-
Start dev (runs
devscripts in all packages via Turbo):pnpm dev
Files added:
package.json- root workspace config and turbo scriptspnpm-workspace.yaml- pnpm workspace packagesturbo.json- turborepo pipeline configapps/web- placeholder web apppackages/ui,packages/utils- example packages
Next steps:
- Replace the placeholder package.json scripts with real dev/build tooling (Next.js, Vite, etc.).
- Add shared eslint/prettier configs and CI tasks.