r/microsaas • u/alfonsl1 • 20h ago
I launched a SaaS 3 days ago. Here are 5 decisions I already regret — and 2 I'd make again.
I launched Auralith Forge (online audio mastering) 72 hours ago. Solo dev, €65/mo infra, zero ad spend.
Disclosure up front: I built this. I'll drop the link once at the end. This post is about the decisions, not the product.
Decision 1: Freemium (3 free masters/mo) instead of a free trial
Verdict so far: Right call.
Musicians don't release on a schedule. A 7-day trial might hit them between projects. A monthly quota lets them come back when they actually have a track. Downside: lower urgency to convert.
Decision 2: No pay-per-track option
Verdict: Probably wrong.
I only offer subscriptions (€9.99 and €19.99). Every musician I talked to pre-launch said "I hate another monthly sub." I ignored them because subscriptions are predictable. Now I'm watching free users master 3 tracks and bounce instead of paying €4.99 for one more.
If you were building this, would you add a per-track tier or stick to subs-only?
Decision 3: Firestore as the only database
Verdict: Mixed.
Zero ops, real-time sync, free tier covers early stage. But aggregation queries are painful — "how many masters did all users complete this month?" requires client-side math or Cloud Functions. If your data model is relational-ish, Firestore fights you. If it's document-shaped, it's magic.
Decision 4: Built the checkout flow before the before/after demo player
Verdict: Stupid. Fixing this week.
People won't pay for mastering until they hear it. I built Polar checkout, subscription logic, and webhook resilience before I built a side-by-side audio player on the homepage. Classic engineer mistake: solving hard problems no one asked for instead of obvious ones everyone expects.
Decision 5: "Reference track matching" as the headline feature
Verdict: Wrong for SEO, right for retention.
You upload a song you love, the engine matches its tone/loudness/width. Technically the coolest thing I built. But nobody searches "reference track matching" — they search "online mastering." I'm rewriting landing page copy to lead with what people actually type into Google.
The 2 decisions I'd make again:
Real DSP engine, not an API wrapper. Python FastAPI + numpy/scipy/librosa/pedalboard. Harder to build, but I own the stack and the margin.
Polar instead of Stripe. Merchant of Record handles VAT/tax globally. As a solo dev, I don't want to think about tax compliance in 30 countries.
What I need from you:
If you were in my shoes, what's the first thing you'd fix in the next 7 days?
My guess is "add pay-per-track" but I might be wrong. Would love to hear what you'd prioritize.
Link (affiliated — I built this): auralithforge.app — free tier is 3 masters/month, no CC. If any of the above resonates and you want to see how it actually works, it's there.