Create commands

Reference for the `revenexx create` commands — every subcommand with a runnable example.

Auto-generated. This page is generated from the revenexx CLI by tools/sync-cli-reference.mjs. Don't edit it by hand — your changes will be overwritten.

Scaffold revenexx platform apps and Blokkli themes.

Every revenexx create subcommand is listed below with its usage and the flags it accepts, with a ✓ marking required flags. Run revenexx create <command> --help for the live options.

The create commands come from a CLI plugin, so they are present only when the CLI is built with that plugin — see the Scaffolding guide for setup and the full walkthrough.

app

Scaffold a platform app: manifest, schema, function, tests — npm-test-green out of the box

Bash
revenexx create app <name>
ArgumentDescription
<name>app name (lowercase, digits, dashes — becomes the repo and route namespace)
FlagRequiredDescription
--title <title>display title (default: derived from the name)
--description <text>one-line description for the Marketplace listing
--vendor <vendor>vendor slug
--entity <name>entity to scaffold (repeatable or comma-separated, plural snake_case)
--dir <path>parent directory to scaffold into
--yesaccept all defaults, never prompt

theme

Scaffold a Blokkli theme: manifest pair + Nuxt SSR storefront, deployable via deploy.sh

Bash
revenexx create theme <name>
ArgumentDescription
<name>theme name (lowercase, digits, dashes)
FlagRequiredDescription
--title <title>display title (default: derived from the name)
--description <text>one-line description for the Marketplace listing
--vendor <vendor>vendor slug
--dir <path>parent directory to scaffold into
--yesaccept all defaults, never prompt
--billing <type>billing type

site

Create a Site on the platform (the deployment target for themes and storefronts)

Bash
revenexx create site <name>
ArgumentDescription
<name>site name
FlagRequiredDescription
--site-id <id>explicit site id
--framework <framework>site framework
--adapter <adapter>framework adapter
--build-runtime <runtime>build runtime
--install-command <command>install command
--build-command <command>build command
--output-directory <dir>build output directory
Was this page helpful?