Skip to content

Getting started

Mike edited this page May 13, 2025 · 1 revision

Getting Started

  1. Clone and Configure

    cp .env.example .env

    Edit .env to provide the necessary values.

  2. Install Dependencies

    bun install
  3. Start the Dev Server

    bun run dev

    Open http://localhost:3000 in your browser.

Testing and Linting

Dust utilizes Vitest for testing core logic and components. To run tests, use the following command:

bun run test

Ensure code quality with:

bun run lint

To automatically fix common issues:

bun run lint —-fix

Clone this wiki locally