New: Consumption-based container hosting is now available.Learn more →

·

What Does It Cost to Host an AI-Built App? Honest Math

5, 50, or 500 euros a month? We break down what hosting, domain, database, and maintenance really cost for your AI-built app.
What Does It Cost to Host an AI-Built App? Honest Math

You built an app with Lovable, Bolt, or Cursor. It runs locally or on a free tier, and now comes the question nobody answers up front: what does it actually cost to keep this thing live? 5 euros? 50? 500 a month? The answers online vary so wildly that you walk away no wiser than before.

Here is the honest math. Keeping a simple AI-built app live realistically costs between 5 and 50 euros a month, depending on whether it has a database and real users. And the biggest line item is almost never the hosting itself. It is the database, external services, and the time you sink into maintenance. Read this to know what you are getting into before the first invoice teaches you the hard way.

The key points

  • A static website costs almost nothing (0 to 5 euros a month), while a real app with a backend and database lands at 10 to 50 euros a month.
  • A domain costs roughly 5 to 30 euros a year depending on the extension, billed separately from hosting (Shopify, 2026).
  • The most expensive hidden cost is not the server, it is the production database: Supabase Pro starts at around 25 euros a month (Supabase, 2026).
  • "Free" is rarely production-ready: free tiers spin down after 15 minutes without traffic and sometimes ban commercial use.

Website or app: why that decides the price

The biggest price difference shows up before you even pick a provider, in the question of whether you run a website or an app. A static website costs almost nothing. An app with a server and database costs money every month, because something has to run around the clock.

A static site is just a stack of HTML, CSS, and JavaScript. It sits on a CDN and gets served, done. Free tiers or a few euros a month cover it. An app, on the other hand, has a backend that takes requests, a database that stores data, and usually auth, email, or API calls on top. Each of these runs 24/7 and costs accordingly.

A simple test: if your app has a login, stores data, or talks to an API in the background, you are in app territory. This is exactly where the price shifts from "cents per month" to "double digits per month". If you want to see everything that sits between a local prototype and a real URL, we cover it in detail under from idea to a real URL.

What does a domain really cost?

A domain costs roughly 5 to 30 euros a year depending on the extension, which works out to less than 3 euros a month. It is billed once a year and is completely independent of hosting. It is the one item in this calculation that does not scale with your user numbers.

Classic extensions like .de, .com, or .net usually land at 5 to 15 euros a year (Shopify, 2026). Trendy extensions like .app or .io cost more and can run 30 to 40 euros a year. Renewals often cost more than the first year, so check the renewal price when you book, not just the intro offer.

The most common mistake: people assume the domain is included in hosting. Usually it is not. You rent the server from one provider and register the name with another, and both invoices arrive separately. At roughly 10 euros a year, though, the domain is the least of your worries.

Where does the money really go? Hosting, database, and services

The money rarely goes into pure hosting. It goes into the database and external services. Compute for a small app costs 5 to 15 euros a month. The production database often costs the same or more, and every extra service like email, auth, or AI calls adds a bit on top.

Hosting itself is cheap for a small app. Render Starter runs around 7 dollars a month per service with always-on availability, the next tier around 25 dollars (Render free tier analysis, 2026). Railway bills by usage, so a service sitting idle costs almost nothing.

The database is the underestimated chunk. Supabase, the default backend behind most AI-built apps, has a free tier only for development. For real users you need Supabase Pro from around 25 euros a month, which gets you 8 GB of database, daily backups, and a real SLA (Supabase, 2026). Then come the small services: an email sender like Resend or Postmark, auth if not handled in the database, and for AI apps the API calls to OpenAI or Anthropic, billed per request.

These hidden items are exactly what turns a supposedly cheap app expensive. We walk through the effect in detail under hidden cloud costs.

Why is "free" rarely production-ready?

Free tiers are great for testing and almost never suitable once real users show up. They spin down after short inactivity, have hard limits, and sometimes ban commercial use outright. For a prototype that is fine. For an app with paying customers it is a problem.

The concrete catches: Vercel Hobby is free but bans commercial use and caps your functions' execution time, so a database-heavy app hits the limit mid-month. Render spins down a free service after 15 minutes without traffic, and the next visitor then waits up to a minute for the cold boot. Railway scrapped its unlimited free tier and now gives only a one-time 5 dollar credit (free tier analysis, 2026).

From the deploys builders run with us, we see the same pattern over and over: the app runs free for months and "works", until the first real wave of users arrives. Then up pops the one visitor whose page takes a minute to load because the container was asleep. Production means: always on, predictable performance, no surprise at the limit. That costs money from the first paying customer, and it is money well spent.

What does maintenance really cost?

Maintenance is the item almost everyone forgets, and depending on the setup it is the most expensive. We do not just mean the server, but updates, security patches, backups, monitoring, and reacting when something tips over at night. For classic agency-built apps, this quickly runs to 250 euros a month and up (Hostinger, 2026).

For you as a builder, this effort first shows up as time, not as an invoice. Every framework update, every patched dependency, every expired certificate is your time. This is also where most deployment problems with vibe-coded apps come from: an exposed secret in the frontend bundle, a forgotten backup, an update that takes down production.

The real saving lever is therefore not the compute price, but who handles the maintenance. A managed platform that does HTTPS, backups, updates, and monitoring out of the box takes off exactly the item that otherwise eats your weekend. That is the difference between "hosted cheap" and "run cheaply".

Three scenarios: 5, 50, or 500 euros a month?

What you pay in the end hinges on almost one thing: how many real users your app has. Here are three realistic scenarios, from a hobby app with no login to a growing app with paying customers. The numbers are rough monthly figures and cover hosting, database, domain, and external services.

Line itemHobby appSmall live appGrowing app
Hosting / compute0 to 5 €5 to 15 €20 to 50 €
Domain (per month)~1 €~1 €~1 €
Database0 € (free)~25 €25 to 40 €
Email / auth / API0 €0 to 10 €10 to 30 €
Maintenanceyourselflownoticeable
Realistic total~5 €~40 €~100 to 150 €

The hobby app is a prototype with no real load and lives happily on free tiers. The small live app has a few thousand users a month, a production database, and lands at around 40 euros. A comparable growing app with tens of thousands of users runs around 150 dollars a month on a direct stack (Staticbot, 2026). The dreaded 500 euros a month shows up almost only with real growth or a bloated stack. Most builders land at around 40 euros a month.

Frequently asked questions

Can I host my AI app completely for free?

For testing yes, for real users practically no. The free tiers from Vercel, Render, and Railway are built for prototypes, spin down after 15 minutes without traffic, and sometimes ban commercial use (free tier analysis, 2026). As soon as someone pays or you need reliability, budget around 25 to 50 euros a month from day one.

What does the database cost extra?

The database is often the single biggest item. Supabase Pro, the default backend behind Lovable and Bolt, starts at around 25 euros a month for 8 GB of storage, daily backups, and a real SLA (Supabase, 2026). The free tier is enough for development only, not production.

Why is the domain not included in the hosting price?

Because they are two different services. Hosting provides the server, domain registration manages the name. You can book both with the same provider, but they are still almost always billed separately. Budget around 5 to 30 euros a year for the domain, depending on the extension.

What happens to the costs if my app suddenly gets a lot of users?

Then database and traffic rise the most. The dominant factor is usually egress, the outgoing data transfer, once you blow past the free limits (Staticbot, 2026). An app growing from a few thousand to tens of thousands of users typically goes from around 40 to 100 or 150 euros a month.

Conclusion

Hosting an AI-built app costs most builders around 40 euros a month, not 5 and not 500. The domain is the smallest item, pure hosting is cheap, and the real costs sit in the production database, external services, and maintenance. "Free" works for the prototype but falls apart by the first paying customer at the latest. Knowing this up front lets you pick your stack with open eyes instead of reacting to the first surprise invoice. And as a bonus: with a platform that hosts in Germany, your user data sits in the right legal space from the start.

Instead of doing the math forever, deploy your first app and see what it costs: get started with lowcloud.