CLI
Project initialization and plan management from the command line.
PayKit includes a CLI tool for project setup, database migrations, and plan syncing. Install it once and use it throughout the project lifecycle.
paykitjs init
pnpm dlx paykitjs initAn interactive setup wizard that scaffolds everything you need to get started. It configures Stripe, then generates:
- A
paykit.tsconfig file with an example plan structure - A route handler for webhooks
- An optional client file for frontend use
Run this once when starting a new project.
paykitjs push
pnpm dlx paykitjs pushThe command you'll run most often. It does two things:
- Applies any pending database migrations to keep your schema up to date
- Syncs your plan definitions to the database and Stripe, creating or updating products and prices in Stripe
Run it on initial setup and again whenever you change your plan configuration.
How versioning works
When you change a plan and push, PayKit creates a new version of that plan. Old versions are never modified or deleted. This means running instances of your app keep working on their matching version while new code picks up the new one.
Production usage
Run push before your app starts or builds, as part of your deploy pipeline. This way the updated product versions are ready in the database by the time your new code goes live.
paykitjs push -y && next buildThis is similar to how you'd run database migrations on deploy. The -y flag skips the confirmation prompt.
paykitjs status
pnpm dlx paykitjs statusValidates your entire PayKit setup without making any changes. Useful when debugging a broken environment. It checks:
- Configuration file validity
- Database connection
- Migration status (whether
pushneeds to be run) - Provider API connectivity
- Sync status between your config, database, and provider
Pass --throw to exit with code 1 on failures, useful for CI pipelines:
pnpm dlx paykitjs status --throwTelemetry
Telemetry can be disabled via environment variables:
PAYKIT_TELEMETRY_DISABLED=1DO_NOT_TRACK=1