---
titel_en: How do I put a Bolt app online with a custom domain?
titel_nl: Hoe zet ik een Bolt-app live met een eigen domeinnaam?
categorie: questions
bundels: website, app
geverifieerd_op: 2026-09-22
bewijs: content/kb/deploy/v0-bolt.md, content/kb/deploy/app.md, lib/domeinreis.ts, lib/config.ts
zoekwoorden: bolt, stackblitz, custom domain, eigen domein, live, deploy
---
## en
Download or export your Bolt project, build it, publish the output folder with one command, and pick your domain name when you pay. A static Bolt site costs € 10 a month with the domain, email forwarding and SSL included; a Bolt app with a backend and database is € 15. The first 14 days are free on a `yourname.dorelli.cloud` address.

| Step | Static site (most Bolt projects) | App with its own server |
|---|---|---|
| Get the code | export from Bolt, or push to GitHub | push to GitHub |
| Publish | `npm run build`, then the command below | one workflow file in the repo |
| Domain | choose it when you pay, we register it in your name | same |
| Price | € 10 a month | € 15 a month |

From the project folder:

```bash
npm run build
npx github:dorelli-cloud/cli deploy dist --email you@example.com
```

The last line of the output is your address. The email you get has the management link; from there you pay and enter the domain name you want. Is the name taken? We email you free alternatives. Already own a domain? Tick "this domain is mine" and change two nameservers at your provider, see [Your own domain](/docs/domains/own-domain).

Does your Bolt project have an Express or Node server with its own database? Then use the App route from [Deploy an app with a database](/docs/deploy/app); the container and a Postgres database come with it.

### Not for

Projects that Bolt built on Supabase or Firebase do not need our App plan: keep that backend, host the front end here for € 10. Not for server code in another language than Node, and not for a domain with an extension we do not register (the list is on [the domains page](/domains)).

## nl
Download of exporteer je Bolt-project, bouw het, publiceer de uitvoermap met één commando, en kies je domeinnaam bij het betalen. Een statische Bolt-site kost € 10 per maand met domein, e-mail doorsturen en SSL erbij; een Bolt-app met een eigen server en database is € 15. De eerste 14 dagen zijn gratis op een adres `jouwnaam.dorelli.cloud`.

| Stap | Statische site (de meeste Bolt-projecten) | App met eigen server |
|---|---|---|
| Code ophalen | exporteren uit Bolt, of naar GitHub pushen | naar GitHub pushen |
| Publiceren | `npm run build`, dan het commando hieronder | één workflowbestand in de repo |
| Domein | kies je bij het betalen, wij registreren hem op jouw naam | zelfde |
| Prijs | € 10 per maand | € 15 per maand |

Vanuit de projectmap:

```bash
npm run build
npx github:dorelli-cloud/cli deploy dist --email jij@voorbeeld.nl
```

De laatste regel van de uitvoer is je adres. In de mail die je krijgt staat de beheerlink; daar betaal je en vul je de domeinnaam in die je wilt. Is de naam bezet? We mailen je vrije alternatieven. Heb je al een domein? Vink "dit domein is van mij" aan en zet bij je partij twee nameservers om, zie [Je eigen domein](/docs/domains/own-domain).

Heeft je Bolt-project een Express- of Node-server met eigen database? Gebruik dan de app-route uit [Een app met database deployen](/docs/deploy/app); de container en een Postgres-database horen erbij.

### Niet voor

Projecten die Bolt op Supabase of Firebase heeft gebouwd hebben onze App-bundel niet nodig: hou dat backend, host de voorkant hier voor € 10. Niet voor servercode in een andere taal dan Node, en niet voor een domein met een extensie die wij niet registreren (de lijst staat op [de domeinenpagina](/domains)).
