Skip to content

Local setup

This guide explains how to run admin-ui-v2 locally

1) Prerequisites

  • Node.js installed (project expects Node v20, see .nvmrc)
  • pnpm installed
  • make installed (optional, but recommended)

2) Install dependencies

From the repository root:

bash
pnpm install

You can also use:

bash
make fresh

3) 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 app

or

bash
pnpm dev --host

Open 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