Skip to content
/ create-sanity-app Public template

Next.js Monorepo with Sanity CMS

Notifications You must be signed in to change notification settings

vueza/create-sanity-app

Repository files navigation

Next.js Monorepo with Sanity CMS

A full-stack template built with:

  • TypeScript
  • Next.js
  • Sanity
  • Storybook
  • Vitest
  • Turborepo
  • Tailwind CSS
  • Biome

Screenshot

Requirements

  • Node >= 22.14.0
  • PNPM >= 10.7.0

Installation

  1. Clone the repository
git clone [email protected]:vueza/create-sanity-app.git
  1. Setup environment variables
cp apps/cms/.env.example apps/cms/.env
cp apps/docs/.env.example apps/docs/.env
cp apps/web/.env.example apps/web/.env
  1. Install dependencies
pnpm install
  1. Run development
pnpm dev

Commands

  • pnpm build: Builds the project using Turbo
  • pnpm check-types: Runs type checking across the project
  • pnpm clean: Removes build artifacts, Turbo cache, and node modules
  • pnpm coverage: Runs test coverage report
  • pnpm dev: Starts development server
  • pnpm editorconfig-checker: Checks EditorConfig file formatting
  • pnpm lint: Runs Biome code linting
  • pnpm preinstall: Ensures pnpm is used as the package manager
  • pnpm prepare: Installs Git hooks via Lefthook
  • pnpm syncpack-fix-mismatches: Fixes package dependency mismatches
  • pnpm syncpack-format: Formats package configuration
  • pnpm syncpack-lint: Lints package configuration
  • pnpm syncpack-update: Updates package dependencies
  • pnpm test: Runs test suite
  • pnpm ui: Runs tests in interactive UI mode with watch
  • pnpm gen component: Creates a Sanity schema, Storybook component and React UI component

Structure

Apps

  • apps/cms: Sanity Studio
  • apps/docs: Storybook
  • apps/web: Next.js

Packages

  • packages/config-tailwind: Shared Tailwind CSS configuration
  • packages/config-typescript: Shared TypeScript configuration
  • packages/internalization: Internationalization
  • packages/migration: Migration
  • packages/ui: Shared React UI component library

Local Development