Skip to content

CLI Overview

The Velox TS CLI handles the repetitive parts of development — starting a dev server with HMR, generating procedures and schemas from your Prisma models, running migrations, and serving OpenAPI docs. Every command is designed to keep you in flow rather than writing boilerplate.

CommandDescription
velox devStart development server
velox syncGenerate schemas + procedures for all Prisma models
velox makeGenerate code scaffolds for a single model
velox migrateDatabase migrations
velox db:seedDatabase seeding
velox introspectType introspection
velox mcpStart MCP server

The CLI is included in @veloxts/cli:

Terminal window
pnpm add -D @veloxts/cli

Or use via npx:

Terminal window
npx velox dev
Terminal window
velox --help
velox make --help
velox migrate --help