Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.kazzle.com/llms.txt

Use this file to discover all available pages before exploring further.

Creating an app

Two ways:
  • Ask the AI - describe what you want in a thread and the AI builds it
  • New app button - click + in the Drive sidebar and choose New app
The AI picks a starting template based on what you ask for:
TemplateWhat you getUse when you need
uiReact web appA web app, dashboard, landing page
processHTTP serverAn API, webhook handler, scheduled job

Multi-draft development

Each working copy is an independent git clone. No branch switching, all drafts stay visible at once.
My App
├── Production (branch: prod, permanent)
├── Draft (branch: dev)
└── Draft (branch: feature-x)
Production is permanent and locked to the prod branch. Only publishing writes to it. Drafts are disposable. Each is a full independent clone. Two drafts on the same branch are two separate working copies. Create a new draft by right-clicking an app and choosing New draft. Pick a branch and a computer, and the AI clones the production code.

The build cycle

  1. The AI creates a draft and writes code
  2. The AI starts the dev server. You see a live preview.
  3. You iterate by chat: “move the chart to the sidebar”, “add a dark theme”
  4. The dev server hot-reloads after each edit
  5. When ready, publish the draft

Publishing

Publishing merges the draft into the production branch. The production branch is protected, so use publish instead of git push.

Deploying

After publishing, deploy to get a live URL:
  • Remote apps deploy to Kazzle’s cloud and get a public URL
  • Local apps install on your computer. The UI loads directly, and the process part runs a dev server.

Realtime apps

For apps that need instant local reads and offline support, the AI:
  1. Creates a database
  2. Turns on realtime sync
  3. Builds a two-part app: UI (React + sync client) and Process (token endpoint + sync upload)
  4. Wires credentials through the vault
See Realtime sync for how it works.

Landing pages

Landing pages are UI-only apps. No backend, no database. Describe the page and the AI builds it, deploys it, and gives you a live URL. To use a custom domain, point your domain or subdomain at the deployed app URL.