Question

Looking for a developer to finish my Bolt app, equity only

Open · 22 viewsasked by samirb

I have a marketplace app for used bike parts built in Bolt, 80% done. Need someone to finish auth, payments and deploy. Can offer 15% equity. Serious people only, DM me.

What I’ve tried

Tried finishing it myself with Bolt for 2 months but payments keep breaking and I'm out of tokens.

Comment
This isn't really a question. If you post the actual payment error you're stuck on, people here will help you with it for free. wes_codes

1 answer

femi_o

Nobody here is going to sign up for equity, but that's fine, you probably don't need a co-founder. This forum works best for specific problems: post the actual payment error (the console output and what you clicked), and people will help you fix it for free. Auth and deploy can be separate questions after that.

One pointer, because it's the most common way Stripe breaks in Bolt apps: check where the Stripe secret key lives. If it's in a VITE_ variable or called from a React component, it ends up in the browser and Stripe calls fail (and anyone can read your key). The Checkout Session has to be created server-side, in a Supabase Edge Function for example, with STRIPE_SECRET_KEY stored as a function secret. The frontend only calls that function and redirects to the URL it returns. Also test checkout with the preview opened in its own tab, Stripe Checkout won't load inside the preview iframe.

Comment
ok fair. the key is in VITE_STRIPE_SECRET_KEY, so that's probably it. will post the error properly. samirb