I don’t think a Stripe integration is on the immediate roadmap but it may happen at some point
There are a few stripe templates in v0, including two of my own (the Neon+Stripe ones)
They use Upstash KV to store stripe subscription status and will help you register a webhook so that any time a user’s sub status changes, it updates KV immediately. Then you can always check KV for accurate sub status before performing an action rather than having to contact Stripe (which is slow and has strict rate limits)
One of the templates is labeled SaaS and it is the same except it has a CRUD system built in too
If you already have your app set up, you can open my template and ask v0 to explain where the payment code is. It’s pretty neatly packaged into /api/stripe so you should almost be able to lift it out directly into your app
You still need Stripe, you’ll add your STRIPE_SECRET_KEY and STRIPE_WEBHOOK_URL as environment variables. The landing page for the template walks you through that
Then in the code there’s a price ID for the subscription tier you can swap out for your own
Okay I guess I’ll work through it one by one. It’s kind of annoying how since I’m in Australia, I need an ABN even though I’m not even making money with the business yet.