Skip to content

Running ENSAdmin Locally

Install dependencies

Terminal window
pnpm install

Set configuration

Terminal window
cp .env.local.example .env.local

You can update VITE_ENSNODE_URL environment variable if you wish ENSAdmin to start with a custom ENSNode URL.

Run development server

Following Vite docs:

Start Vite dev server in the current directory.

Terminal window
pnpm dev

Preview production website

Following Vite docs:

Locally preview the production build. Do not use this as a production server as it’s not designed for it.

Terminal window
pnpm build && pnpm preview