Skip to content

lerim dashboard

Starts the local dashboard UI.

Overview

lerim dashboard starts the local Next.js dashboard dev server, prints the dashboard URL, and points it at the running Lerim API. If the backend API is not reachable, the command starts it with the same Docker runtime path as lerim up.

For local backend rebuilds, run lerim up --build first, then lerim dashboard. If the last backend mode was local-build, lerim dashboard reuses the existing lerim-lerim:local image with --no-build; it does not silently rebuild the image while starting the UI.

Syntax

lerim dashboard [--port PORT]

Examples

lerim up
lerim dashboard

Build the backend locally before opening the dashboard:

lerim up --build
lerim dashboard

Run the UI on a different port:

lerim dashboard --port 3001

Options

--port PORT

Dashboard UI port. Defaults to 3000.

See also