| title | CLI |
|---|---|
| description | 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.
An interactive setup wizard that scaffolds everything you need to get started. It asks you to pick a provider (Stripe, Polar, or Creem), 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.
The 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 your payment provider, creating or updating products and prices in Stripe (or whichever provider you're using)
Run it on initial setup and again whenever you change your plan configuration.
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.
When you remove a plan from your config and push, PayKit archives the product locally instead of deleting it. Existing subscriptions and webhooks can still resolve the historical product. For Stripe, the provider product is marked inactive.
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.
Validates 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:
Telemetry can be disabled via environment variables:
PAYKIT_TELEMETRY_DISABLED=1DO_NOT_TRACK=1