Skip to Content
Getting StartedInstallation

Installation

Follow these steps to get your cur8d-based project up and running.

Prerequisites

  • mise: For managing Node.js and pnpm versions.
  • Node.js: Managed via mise (.mise.toml).
  • pnpm: Managed via mise (.mise.toml).

Quick Start

  1. Customize the template (optional): Run the interactive setup script to configure your project name, repository links, and clean up template metadata:

    mise run init # or: pnpm run init
  2. Install toolchain: Let mise automatically download and configure Node.js and pnpm:

    mise install
  3. Install dependencies:

    mise run install # or: pnpm install
  4. Set up environment variables:

    cp .env.example .env
  5. Install Playwright browsers (for E2E / accessibility testing):

    mise run playwright:install
  6. Start the development server:

    mise run dev # or: pnpm dev

Your application should now be running at http://localhost:3000.

Last updated on