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

# Getting Started

> A condensed quickstart for running AquaOps locally.

## Requirements

* Node.js
* npm
* a Supabase project

## Local setup

<Steps>
  <Step title="Create environment file">
    Create `.env.local` with:

    ```bash theme={null}
    NEXT_PUBLIC_SUPABASE_URL=
    NEXT_PUBLIC_SUPABASE_PUBLISHABLE_KEY=
    SUPABASE_SERVICE_ROLE_KEY=
    ```
  </Step>

  <Step title="Install dependencies">
    ```bash theme={null}
    npm install
    ```
  </Step>

  <Step title="Seed demo data">
    ```bash theme={null}
    npm run seed
    ```
  </Step>

  <Step title="Start the app">
    ```bash theme={null}
    npm run dev
    ```
  </Step>

  <Step title="Open the app">
    Open `http://localhost:3000`.
  </Step>
</Steps>
