Ship product logic once, scale anywhere
Keep your core business code in one place and map it to Stripe, Creem, Dodo Payments, plus Vercel, Cloudflare Workers, EdgeOne, and Docker.
1import type { MuseConfig } from "@musemvp/core"2 3export const config = {4 billing: {5 gateway: "stripe", // stripe | creem | dodo6 },7 deploy: {8 target: "vercel", // vercel | cloudflare | edgeone | docker9 },10} satisfies MuseConfig11 12export async function bootstrapProduct(cfg: MuseConfig) {13 await deploy(cfg.deploy.target)14 await checkout(cfg.billing.gateway)15}16 17// env swap — same routes, queries, and UI shell- 3 Gateways
- 4 Targets
- 0 Lock-in

















