DocumentationCLI Reference

CLI Reference

Comprehensive guide to FusePlane CLI commands.

CLI Installation

Get the latest version from npm.

npm i -g @fuseplane/cli

Core Commands

fuseplane init

[--framework <name>]

Scaffolds a new FusePlane project. Detects Next.js, Remix, or Vite automatically.

1fuseplane init

fuseplane dev

[--port <number>]

Starts the local execution gateway. Mirrors production behavior including secrets injection.

1fuseplane dev --port 8787

fuseplane deploy

[--env <prod|preview>]

Deploys your endpoints to the global edge network. Returns a deployment URL.

1fuseplane deploy --env production

fuseplane secrets

[list|set|get|remove]

Manage encrypted environment variables. Secrets are never exposed to the client.

1fuseplane secrets set STRIPE_KEY sk_live_...