Local setup
This guide explains how to run admin-ui-v2 locally
1) Prerequisites
- Node.js installed (project expects Node
v20, see.nvmrc) pnpminstalledmakeinstalled (optional, but recommended)
2) Install dependencies
From the repository root:
bash
pnpm installYou can also use:
bash
make fresh3) Configure environment
The repository already includes .env files.
If you need different local services, update values in .env (for example API host/backend URL).
4) Start the app
Run either command from the repository root:
bash
make appor
bash
pnpm dev --hostOpen the app in your browser at:
http://localhost:5173
Log in with your admin credentials from Prezly.
5) Useful local commands
bash
pnpm check # biome CI checks
pnpm build # production build
make clean # cleanup node_modules and ts build info