Skip to content

Latest commit

 

History

History
57 lines (40 loc) · 960 Bytes

File metadata and controls

57 lines (40 loc) · 960 Bytes

o3.dev

Monorepo for o3.dev, starting with a single Next.js landing page in apps/site.

Stack

  • pnpm workspaces
  • Turborepo
  • Next.js App Router
  • React
  • TypeScript
  • Tailwind CSS
  • ESLint and Prettier

Structure

apps/
  site/       # Root-domain landing page for o3.dev
packages/    # Shared packages will live here when needed

Commands

Install dependencies:

pnpm install

Run the site app locally:

pnpm dev

Run checks:

pnpm lint
pnpm typecheck
pnpm build
pnpm format:check

Vercel

Import this repository as a monorepo project and set the Vercel project root directory to apps/site.

Recommended settings:

  • Framework preset: Next.js
  • Node.js version: 24.x
  • Package manager: pnpm, detected from pnpm-lock.yaml
  • Production domain: o3.dev

Future subdomain deployments can be added as separate apps under apps/ and imported as separate Vercel projects from the same repository.