Kizaki
ReferenceCLI

Init And Dev

Create a new app, install dependencies, run the local stack, and use the built-in development workflow.

kizaki init hello-kizaki
cd hello-kizaki
npm install
kizaki dev

What They Do

  • kizaki init scaffolds a new app
  • kizaki dev boots the local database, runtime, and app tooling

Use this command group whenever you are establishing or iterating on the local app. For most first-time users, this is the entire CLI surface they need at the start.

What To Expect

kizaki init creates a starter app that already knows how to work with the platform. kizaki dev then turns that app into a running local environment with the runtime, database, and generated developer surfaces wired together.

That is why the quickest path to learning Kizaki is still the default SaaS scaffold plus kizaki dev.

Related guide: Quickstart

On this page