> ## Documentation Index
> Fetch the complete documentation index at: https://docs.uno.engineering/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

> Run Uno locally

Get Uno running on your machine with the monorepo's standard toolchain.

## Prerequisites

Before you begin, make sure you have:

* Node.js 24+ (see `.nvmrc`)
* pnpm 11.1.2 (via Corepack)
* Docker (for the local Supabase project)

## Install and start

<Steps>
  <Step title="Install dependencies">
    From the repository root:

    ```bash theme={null}
    pnpm install
    ```
  </Step>

  <Step title="Start the database">
    ```bash theme={null}
    pnpm db:start
    ```

    This starts the local Supabase project, applies migrations, and syncs environment files.
  </Step>

  <Step title="Run the apps">
    ```bash theme={null}
    pnpm dev
    ```

    This starts the backend, web app, admin web, and Inngest dev server.
  </Step>

  <Step title="Create your account">
    Open `http://127.0.0.1:5173/login`, create an account, and sign in. See [Create an account](/account-creation) for the full flow.
  </Step>

  <Step title="Preview these docs">
    ```bash theme={null}
    pnpm docs:dev
    ```

    Open `http://localhost:3000` to preview the Mintlify site locally.
  </Step>
</Steps>

## Local addresses

| Application          | Address                  |
| -------------------- | ------------------------ |
| Backend API          | `http://127.0.0.1:3000`  |
| Web app              | `http://127.0.0.1:5173`  |
| Supabase Studio      | `http://127.0.0.1:56323` |
| Docs (local preview) | `http://localhost:3000`  |

<Note>
  Daytona credentials are optional for basic local database and web workflows. See the repository README for sandbox and seed-snapshot setup.
</Note>
