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.
Deploying
Kazzle apps can be deployed to Kazzle’s hosting or installed on device computers.Remote deploy
Remote deploy builds and ships your app to Kazzle’s hosting:- The
lifecycle.buildcommand runs (e.g.vite build) - A Docker image is built from the app directory
- The image is deployed to Kazzle’s hosting
- A production URL is assigned
Production URLs
Deployed apps get a URL at{app-name}.kazzle.app. Public apps are accessible to anyone with the URL. Private apps require Kazzle authentication.
Lifecycle commands in production
| Phase | Command | When |
|---|---|---|
build | lifecycle.build | During deploy, builds the production artifact |
run | lifecycle.run | In production, starts the app |
lifecycle.run is not set, the deploy system uses a sensible default based on the framework detected in package.json.
Local install
Apps can also run on device computers (your local machine) via the Kazzle daemon. Thelifecycle.dev command starts the app in development mode.