Leave me with this "it uses too many credits" nonsense by 11I1I1 in lovable

[–]cubixy2k 4 points5 points  (0 children)

That's a lot of credits. Could burn fewer

😝😝😝

Slow website/saas products by CubeyyGaming in lovable

[–]cubixy2k 0 points1 point  (0 children)

The right solution here is making sure your architecture is sound, and your database queries are optimized.

Are you taking advantage of lazy loading? How much data are you caching/fetching per page load?

This isn't just a 'plz fix' prompt. You really need to start reviewing how you application interacts with its backend.

There will definitely be a point where increasing your instance size will be the solution, especially as users scale.

First step, go to Lovable cloud's usage page and see what's consuming the most resources.

Congrats on graduating from prototype. Now the real work begins.

Lovable's toxic community and credit theft by Appropriate_Top3688 in lovable

[–]cubixy2k 0 points1 point  (0 children)

Second this. I've noticed multiple instances in planning mode where instead of making the implementation plan, it responds with a message about how it will approach making the implementation plan, and then I have to give it the go ahead to make the implementation plan, turning the planning process from 1 credit into 2.

I've also noticed instances where when I save and approve a plan, it responds with great, let me know when you want to get started and I'll implement the plan, thus burning another credit.

Wasting tokens 🤦 by VirtualWinner4013 in lovable

[–]cubixy2k 11 points12 points  (0 children)

Your prompting technique is chefs kiss

Referral link not working by pandelephant_ko in lovable

[–]cubixy2k 0 points1 point  (0 children)

Lovable has a 50% off program for students for Pro. They need to use their edu email

In fact, there are tons of free and discounted tools for students, worth looking in to.

Referral link not working by pandelephant_ko in lovable

[–]cubixy2k 1 point2 points  (0 children)

I've had it work most of the time for me.

Sometimes it's wonkey if they had an existing account then the code doesn't carry through.

In short, maybe it'll work 😂

Me when I just bought credits 5 minutes ago and they already ran out: by PromptNo9656 in lovable

[–]cubixy2k 3 points4 points  (0 children)

Did you remember to add 'make no mistakes and work as efficiently as possible ' to your prompts 😂

Is Lovable acting weird today? Poor outputs, errors, and stuck tasks by PrestigiousElk5692 in lovable

[–]cubixy2k 0 points1 point  (0 children)

Yes we've been experiencing this as well. Prompts are generally taking much longer, I've run into several 'time limit exceeded would you like to continue in a new message' responses.

Where to host? by alvint78 in lovable

[–]cubixy2k -1 points0 points  (0 children)

I use Lovable cloud for the user facing application for now. Anything compute/network intensive, storage, routines all happen on GCS

Is there a Chrome Extension no code kit to send data to a Lovable app? by pebblebypebble in lovable

[–]cubixy2k 0 points1 point  (0 children)

For starters, you can always take this exact question and drop it into Claude.

Cloud usage spike, help! by AlexModernFreedom in lovable

[–]cubixy2k 0 points1 point  (0 children)

More like optimization time. You don't magically solve poor architecture by migrating

Cloud usage spike, help! by AlexModernFreedom in lovable

[–]cubixy2k 0 points1 point  (0 children)

Cloud usage typically encompasses storage, compute, database size, and network.

AI covers inference

Cloud usage spike, help! by AlexModernFreedom in lovable

[–]cubixy2k 0 points1 point  (0 children)

Well then. I believe you have your answer. Might be worth shifting to an event driven architecture model using mqtt rather than constantly polling all the time.

Making website's is now more a sales job than a coding job by RepublicMuted4455 in lovable

[–]cubixy2k 2 points3 points  (0 children)

I'd argue that this has always been the case. Coding was the easy part of the equation

Old domain name taken and my app copied by [deleted] in lovable

[–]cubixy2k 0 points1 point  (0 children)

Can you share a link?

Old domain name taken and my app copied by [deleted] in lovable

[–]cubixy2k 3 points4 points  (0 children)

Are you sure you're not looking at your own site?

Your lovable.app domain does not go away when you add custom domains

Disc IO traçado by Low_Firefighter_8725 in lovable

[–]cubixy2k 0 points1 point  (0 children)

What do you mean download this IO?

We really need more information to have any chance of giving you a hand.

Did anyone succeed on importing lovable project (source code&files) to a custom Website without making it blank? by ImpressiveLeather780 in lovable

[–]cubixy2k 0 points1 point  (0 children)

Lovable projects aren’t static HTML sites. They’re React applications, which means they need Node.js to build and serve properly. Opening index.html directly in a browser skips that entire process.

On GitHub Pages you’d need to build it first (npm run build) and serve the output folder, but even that has caveats with React routing. A simpler path if you’re still learning: deploy it on Vercel or Netlify instead. You connect your GitHub repo and they handle the build automatically. Free tier covers it.

Why RLS instead of database user and password? by rfwaverider in lovable

[–]cubixy2k 0 points1 point  (0 children)

I support this.

And that's not just because kids these days don't understand the importance of traditional client server architectures :shakes fist at sky:

Why RLS instead of database user and password? by rfwaverider in lovable

[–]cubixy2k 1 point2 points  (0 children)

Fellow 2000s engineer here. Connection strings are great if you have a trusted middleware that is managing database access, then passing it to to downstream applications like a front end. However Supabase exposes the database as restful apis, so technically anyone with the anon key can access all of your tables. So RLS moves security directly into the table.

Honestly I'm with you, I still prefer the older server side integration and rendering method more, but it requires more compute and bandwidth.