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
-
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 -
Install toolchain: Let
miseautomatically download and configure Node.js andpnpm:mise install -
Install dependencies:
mise run install # or: pnpm install -
Set up environment variables:
cp .env.example .env -
Install Playwright browsers (for E2E / accessibility testing):
mise run playwright:install -
Start the development server:
mise run dev # or: pnpm dev
Your application should now be running at http://localhost:3000.
Last updated on