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
-
Install dependencies from root:
# From the project root pnpm install -
Environment Setup: Navigate to the admin app and copy the example environment file:
cd apps/admin cp .env.example .envRefer to the Configuration page for details on filling out these variables.
-
Run Development Server: From the root directory, run:
pnpm dev:webOr to run only the admin portal:
pnpm dev --filter=admin
The application will be available at http://localhost:3004.
