Labels.io

Get it running

From a blank machine to a local dev server in minutes.

The fastest path: open the project in your AI coding tool and say "get this running". The get-it-running skill checks your machine, installs what is missing, and starts the dev server.

Prefer to do it by hand? It is three commands.

Check the prerequisites

You need Node 20 or newer, pnpm, and git:

node -v
pnpm -v
git --version

If one is missing, your AI can install it, or grab Node from nodejs.org and run corepack enable to get pnpm.

Install and start

pnpm install
pnpm dev

Open the app

Visit http://localhost:3000. The landing page, the app at /app, and these docs all work immediately, no environment variables required.

Nothing to configure on day one

The kit runs entirely on mock data until you wire a real service, so a fresh install never asks you for API keys.

On this page