Getting Started

Installation

Install dependencies, configure environment variables, and prepare production settings.

installationenvironmentdeployment

Installation

Requirements

  • Node.js 20 or newer.
  • npm 10 or newer.

Install dependencies

npm install

Configure environment variables

Copy the example file and set your site URL:

cp .env.example .env.local

Required key:

  • NEXT_PUBLIC_SITE_URL

Optional keys:

  • GOOGLE_SITE_VERIFICATION
  • BING_SITE_VERIFICATION

Verify setup

Run checks before shipping:

npm run lint
npm run typecheck
npm run build

Next step

Continue to Usage for authoring and customization patterns.

Updated 2026-04-19