Installation

Setting up the Admin Portal locally.

Created: 1/11/2026

Installation

To run the Admin Portal locally, follow these steps.

Prerequisites

  • Node.js (v20+)
  • pnpm (v10.4.1+)
  • Access to the Privy Dashboard

Steps

  1. Install dependencies from root:

    # From the project root
    pnpm install
    
  2. Environment Setup: Navigate to the admin app and copy the example environment file:

    cd apps/admin
    cp .env.example .env
    

    Refer to the Configuration page for details on filling out these variables.

  3. Run Development Server: From the root directory, run:

    pnpm dev:web
    

    Or to run only the admin portal:

    pnpm dev --filter=admin
    

The application will be available at http://localhost:3004.