https://github.com/vercel/nextjs-foundations-starter.git
A Turborepo monorepo starter for the Next.js Foundations certification course.
# Install dependencies
pnpm install
# Run both apps in dev mode
pnpm dev
# Type check all packages
pnpm check-types
# Build all packages
pnpm build
# Format and lint
pnpm format
pnpm lint
nextjs-foundations-starter/
โโโ apps/
โ โโโ web/ # Marketing site (localhost:3000)
โ โโโ blog/ # Content hub (localhost:3001)
โโโ packages/
โ โโโ ui/ # Shared UI components
โ โโโ api/ # Mock data layer (Faker)
โโโ turbo.json # Turborepo configuration
โโโ biome.jsonc # Biome linting/formatting
โโโ package.json
apps/web) - Marketing site running on port 3000apps/blog) - Content hub running on port 3001MIT