Skip to Content

Synopsis

aigon deploy [--preview]

Shortcuts

  • /ad (slash command) · aigon ad (CLI)

Description

Runs your project’s configured deploy command. By default runs the production deploy; use --preview for a preview deployment.

Configuration

Configure deploy commands in .aigon/config.json:

{ "commands": { "deploy": "vercel --prod", "preview": "vercel" } }

If no config is set, Aigon looks for deploy or preview scripts in package.json.

Flags

FlagDescription
--previewRun the preview deploy command instead of production

Usage

# Production deploy aigon deploy # Preview deploy aigon deploy --preview
Last updated on