---
titel_en: Where do I host a Lovable app with a database in Europe?
titel_nl: Waar host ik een Lovable-app met database in Nederland?
categorie: questions
bundels: app
geverifieerd_op: 2026-09-22
bewijs: lib/config.ts, lib/bundelgrenzen.ts, content/kb/deploy/app.md, .github/actions/dorelli-deploy/action.yml
zoekwoorden: lovable, database, supabase, europe, nederland, postgres, host
---
## en
A Lovable app with logins, orders or a dashboard is a Node app with a database, and you can host it on our App plan for € 15 a month, in the EU. Your app runs in its own container in Amsterdam and gets its own Postgres database in Dublin. The connection string arrives in `DATABASE_URL`, so the code Lovable generated keeps working. First 14 days are free.

| What you get | On the App plan |
|---|---|
| Container | 0.25 vCPU, 0.5 GiB memory, scales to zero when nobody visits |
| Database | own Postgres, 1 GB, 10 connections, server in the EU (Ireland) |
| Traffic | 10 GB a month |
| Included | domain name, email on that domain, SSL, daily backup, monitoring, Dutch invoice |
| Price | € 15 a month, no VAT added, cancel monthly |

Lovable has no button to publish elsewhere. The way out is GitHub: connect your project (top right in Lovable) and add one workflow file. The image is built on GitHub, never on our server.

```yaml
- uses: dorelli-cloud/cli/.github/actions/dorelli-deploy@v1
  with:
    plan: app
    email: you@example.com
```

The first run creates the app and tells you which secrets to set. Every push after that updates the same app. The full file is in [Deploy an app with a database](/docs/deploy/app).

Does your Lovable project use Supabase? Then it already has a database, and what you need from us is the Website plan (€ 10): the front end is static and Supabase keeps doing the data. See [Is my project a static site or an app?](/docs/questions/static-site-or-app)

### Not for

An app that needs more than 1 GB of data or 10 database connections, an app that must answer within a second after a quiet night (the first visit after idle takes 10 to 30 seconds, unless you add keep-warm for € 9 a month), or anything that is not Node. Bigger containers and your own database server are on the Platform plan.

## nl
Een Lovable-app met logins, bestellingen of een dashboard is een Node-app met een database, en die host je bij ons op de App-bundel voor € 15 per maand, in de EU. Je app draait in een eigen container in Amsterdam en krijgt een eigen Postgres-database in Dublin. De connectiestring komt binnen in `DATABASE_URL`, dus de code die Lovable maakte blijft werken. De eerste 14 dagen zijn gratis.

| Wat je krijgt | Op de App-bundel |
|---|---|
| Container | 0,25 vCPU, 0,5 GiB geheugen, schaalt naar nul als niemand komt |
| Database | eigen Postgres, 1 GB, 10 verbindingen, server in de EU (Ierland) |
| Verkeer | 10 GB per maand |
| Inbegrepen | domeinnaam, e-mail op dat domein, SSL, dagelijkse back-up, monitoring, Nederlandse factuur |
| Prijs | € 15 per maand, geen btw erbij, maandelijks opzegbaar |

Lovable heeft geen knop om ergens anders te publiceren. De weg naar buiten is GitHub: koppel je project (rechtsboven in Lovable) en zet er één workflowbestand in. Het image wordt op GitHub gebouwd, nooit op onze server.

```yaml
- uses: dorelli-cloud/cli/.github/actions/dorelli-deploy@v1
  with:
    plan: app
    email: jij@voorbeeld.nl
```

De eerste run maakt de app aan en zegt welke secrets je moet zetten. Elke push daarna werkt dezelfde app bij. Het hele bestand staat in [Een app met database deployen](/docs/deploy/app).

Gebruikt je Lovable-project Supabase? Dan heeft het al een database, en heb je van ons de Website-bundel nodig (€ 10): de voorkant is statisch en Supabase blijft de data doen. Zie [Is mijn project een statische site of een app?](/docs/questions/static-site-or-app)

### Niet voor

Een app die meer dan 1 GB data of 10 databaseverbindingen nodig heeft, een app die na een stille nacht binnen een seconde moet antwoorden (het eerste bezoek na stilstand duurt 10 tot 30 seconden, tenzij je warm houden toevoegt voor € 9 per maand), of iets dat geen Node is. Grotere containers en een eigen databaseserver zitten op de Platform-bundel.
