Question

Monthly cost with real users, what should I expect?

Solved · 1602 viewsasked by noor_builds

I have maybe 50 users a day on my Lovable app. Free tiers so far. What should I expect at 500 or 5,000 users? I don't want a surprise bill.

What I’ve tried

Read the pricing pages, but I don't know what my usage will look like. The numbers are in requests and GB, I think in users.

Comment
Following, same question for Bolt + Supabase. tomvibes

2 answers

Marked as helpful by the asker
jonas_k

Rough rule of thumb for a normal CRUD app:

Users/daySupabaseVercelTotal
50freefree€0
500Pro €25Hobby is fine unless commercial → Pro €20~€45
5,000Pro €25 + maybe compute add-onPro €20€50–100

The things that actually cause surprise bills: images served through your own app instead of a CDN, and a cron job that runs every minute. Set a spend cap in Supabase and a usage alert in Vercel today, both take two minutes.

Comment
The table is super helpful. What's the commercial bit about Vercel Hobby? noor_builds
Hobby is for non-commercial use per their terms. The moment you charge money you should be on Pro, regardless of traffic. jonas_k
One more surprise line: Supabase egress if you serve images straight from Storage. Look at the usage page once a month, it's where the bill starts. deploydan
cloudkat

The table is right for plain CRUD. One thing to add because it's a Lovable app: if any feature calls an AI API (summaries, a chat, "generate a description"), that line will be bigger than Supabase and Vercel together. It scales per use, not per user, and a single enthusiastic user can cost more than a hundred quiet ones.

Put a per-user daily limit on those calls from day one and a hard monthly budget in the provider's dashboard.

Comment
There's a "suggest a title" button that calls OpenAI. Hadn't counted it at all. Adding a limit. noor_builds