CLI for Dispatch - Deploy APIs Instantly
npm install dispatch-deploybash
npm install -g dispatch-deploy
`
Quick Start
$3
Visit usedp.xyz/dashboard to:
- Sign up for a Dispatch account
- Choose your tier (Free/Pro/Enterprise)
- Generate your access code
$3
`bash
dispatch login
Paste your access code when prompted
`
$3
`bash
cd your-api-project
dispatch deploy
`
Commands
$3
Authenticate using your access code from the dashboard.
`bash
dispatch login
Interactive: prompts for access code
dispatch login --code YOUR_ACCESS_CODE
Non-interactive: provide code directly
`
$3
Remove local credentials.
`bash
dispatch logout
`
$3
Run safety checks locally without deploying.
`bash
dispatch check
dispatch check --project ./my-api
`
$3
Deploy your API to production after passing safety checks.
`bash
dispatch deploy
dispatch deploy --project ./my-api
dispatch deploy --dry-run # Safety checks only
``