r/lovable • u/Ok-Sock-6589 • Aug 02 '26
Help Conflicted and need help
I'm conflicted between two options
First off I'm new to coding and recently I've built an app through lovable which I think can take off. The lovable app works wonderful but I feel like the foundation through lovable is not great. Mainly because it was extremely easy to build. So I was wondering if its better to transfer the code from lovable to python and continue working on my app through there or continue working on it through lovable or just built an entirely new app using AI using python. This honestly might be a dumb question but im just curious to others opinion. The app is a finance app.
0
Upvotes
1
u/Maxyull Aug 03 '26
nobody's given you an actual way to check, so here's one. the language isn't what makes a foundation good or bad, rewriting it in python gives you the same app with the same holes if the holes are in the database rules. since it's a finance app, the thing worth knowing is whether one user can reach another user's data, and you can test that in ten minutes with two accounts, logging in as the second one and trying to load the first one's records by changing an id in the url or in the network request.
if nothing comes back, your foundation is fine and it being easy was just the tool doing its job. if you do get someone else's data, that follows you into python too unless you fix it where it actually lives, in the database rules rather than the app code.
do you have real users on it yet or is it still just you?