✦ kordrun v1.0 — 2 processes free, forever
kordrun

Quick start

Install the kordrun CLI, activate your license, and run your first stack.

Set up kordrun

Install the CLI

curl -fsSL kordrun.mohitkadwe.tech/install | sh
cargo install --path .

Rust/cargo is required while kordrun is in pre-release; published binaries are coming.

Activate your license

Copy your key from the dashboard and run:

kordrun activate KRDN-XXXX-XXXX-XXXX-XXXX

This saves the key to ~/.kordrun/license.key and registers this machine, so it shows up under Machines in your dashboard.

Create a Kordfile

In your project root, create a file named Kordfile:

workspace "Acme"

app web
  run npm run dev
  port 3000

app api
  run cargo run
  port 4000
  health /healthz

Run your stack

kordrun start

kordrun launches every app in dependency order, gates on health checks, and opens a live dashboard. Run kordrun with no arguments any time to reopen the dashboard.

If a port is already in use, kordrun asks before killing the process holding it — answer y to free the port and start.