Skip to content

Quickstart

Get a Kumiko app running locally in under 5 minutes.

Terminal window
git clone git@github.com:CosmicDriftGameStudio/kumiko.git
cd kumiko
bun install
cp .env.example .env
bun kumiko dev

Open http://localhost:4444 — sample apps are reachable.

StepWhat it does
bun installinstalls all workspace dependencies
cp .env.example .envcopies default dev config (DB credentials, ports)
bun kumiko devstarts Docker services (PostgreSQL on :15432, Redis on :16379) and the dev server
Terminal window
bun kumiko status # what's running on which port?
bun kumiko test # changed unit tests
bun kumiko check # Biome + TypeScript + tests
  • Build your first feature → see Patterns for the r.* API
  • Look at samples/recipes/* for working examples
  • Read Features and composition to understand the pipeline
Terminal window
bun kumiko reset # nuke containers + DB, fresh start
bun kumiko stop # stop services without deleting state