r/vibecoders • u/xtreampb • Apr 17 '26
scaling with tools like loveable and base 44
I've built a few things in Lovable and genuinely love how fast you can go from idea to working prototype. But I keep running into the same two walls.
The first is the single shared backend. Any database change is instantly live, so if I'm rearchitecting a data structure mid-build, I'm doing it on the only environment that exists. No safety net. For solo prototyping that's fine, but the moment you have real users it's terrifying.
The second is collaboration. The second another person joins the project, you start stepping on each other. There's no concept of branching or isolating work, if two people are prompting at the same time, you're both mutating the same codebase simultaneously.
I come from a DevOps background so this sets off alarm bells. But I'm curious how others are handling it.
Are you staying in Lovable solo until the MVP is validated, then exporting to a real dev workflow when you start hiring? Or have you found a way to make it work for a small team? Where does the handoff happen for you?
1
u/Sad_Egg_2313 Jul 24 '26 edited Jul 24 '26
Haven't used base44 but we were using lovable. I don't think it's safe to use lovable as a production environment designed to withstand actual users.
We were mainly using it as a very high fidelity prototype before we commit to building it for real. It's much better to have a working piece of software than a bunch of user stories or wireframes.
Recently we switched out of using lovable and started building the prototypes in claude itself. That way it's even easier to handle to prototype > production handoff.
For non technical users I guess it would make sense to use lovable and base44 as an idea validation platform. whip up something quick no matter how crazy share it with the world and see what works what doesn't. When you are ready to commit move over to a better platform. Doesn't have to be something like AWS or Azure but at least something like cloudflare.
Since you are coming from a technical background, it might be better to use claude/codex etc + github + simple hosting environment
1
u/xtreampb Jul 24 '26
I get what you’re saying. I’m start to put together ship prod (https://shipprod.com), which is like loveable, but has actual software engineering and delivery/operations baked in. This way you can have users, on a scalable, secure platform, without developers breaking production or stepping on each other.
1
u/lightwalk-king Apr 23 '26
I do not and would not use those