Kura Docs
Get started / Quickstart

Quickstart

Install

Create a new project with the scaffolder:

npm create kura my-docs
cd my-docs
npm install

Add content

Drop Markdown files into content/docs/ and describe each page with frontmatter:

---
title: My first page
section: Get started
order: 1
---

# My first page

Write your content here.

Run

npm run dev

Open http://localhost:3000 and you have a sidebar, a table of contents, search, and a .md plus /mcp for every page.

Deploy

When you're ready, ship it to the Cloudflare edge:

npm run deploy

The scripts wrap the Kura CLI — kura dev, kura build, and kura deploy — so you only ever work with one command surface.