---
titel_en: How do I deploy a site from Claude Code with one command?
titel_nl: Hoe deploy ik vanuit Claude Code een site met één commando?
categorie: questions
bundels: website
geverifieerd_op: 2026-09-22
bewijs: packages/dorelli/src/cli.ts, packages/dorelli/skill/SKILL.md, lib/llms.ts, lib/config.ts
zoekwoorden: claude code, one command, één commando, cli, npx, mcp, deploy
---
## en
Ask Claude Code to publish the site to Dorelli Cloud, or run this yourself in the project folder:

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

The last line of the output is the address, live within a minute on `yourname.dorelli.cloud`. No account, no token to create first. Run it again in the same folder and the same site is updated; the key lives in `.dorelli.json`, which you keep out of version control. The trial is 14 days; keeping the site with your own domain, email and SSL is € 10 a month.

| Detail | Value |
|---|---|
| Command | `npx github:dorelli-cloud/cli deploy [folder] --email <you> --yes` |
| Folder | `dist`, `build` or `out`; leave it out to publish the current folder |
| `--yes` | skips the confirmation, so an agent can run it unattended |
| Status | `npx github:dorelli-cloud/cli status` in the same folder |
| Limits | 50 MB per upload, 500 files, static files only |
| Price | free for 14 days, then € 10 a month with domain, email forwarding, SSL, backup and monitoring |

Prefer a tool over a command? Add us as an MCP server and Claude Code gets `deploy_site` and `site_status`:

```bash
claude mcp add dorelli -- npx -y github:dorelli-cloud/cli mcp
```

Claude Code reads [our llms.txt](/llms.txt) as well, so "publish this to Dorelli" is usually enough. The email address must be real: the management link goes there.

### Not for

A Next.js project with server components or API routes: that is an app, not a static site, and goes through a GitHub workflow on the [App plan](/docs/deploy/app) (€ 15). Also not for a folder without an `index.html`.

## nl
Vraag Claude Code om de site naar Dorelli Cloud te publiceren, of draai dit zelf in de projectmap:

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

De laatste regel van de uitvoer is het adres, binnen een minuut live op `jouwnaam.dorelli.cloud`. Geen account, geen token dat je eerst moet aanmaken. Draai je het nog een keer in dezelfde map, dan wordt dezelfde site bijgewerkt; de sleutel staat in `.dorelli.json`, en die hou je buiten versiebeheer. De proef duurt 14 dagen; de site houden met je eigen domein, e-mail en SSL is € 10 per maand.

| Detail | Waarde |
|---|---|
| Commando | `npx github:dorelli-cloud/cli deploy [map] --email <jij> --yes` |
| Map | `dist`, `build` of `out`; laat hem weg om de huidige map te publiceren |
| `--yes` | slaat de bevestiging over, zodat een agent het zonder toezicht kan draaien |
| Status | `npx github:dorelli-cloud/cli status` in dezelfde map |
| Grenzen | 50 MB per upload, 500 bestanden, alleen statische bestanden |
| Prijs | 14 dagen gratis, daarna € 10 per maand met domein, e-mail doorsturen, SSL, back-up en monitoring |

Liever een tool dan een commando? Voeg ons toe als MCP-server en Claude Code krijgt `deploy_site` en `site_status`:

```bash
claude mcp add dorelli -- npx -y github:dorelli-cloud/cli mcp
```

Claude Code leest ook [onze llms.txt](/llms.txt), dus "publiceer dit naar Dorelli" is meestal genoeg. Het e-mailadres moet echt zijn: daar gaat de beheerlink heen.

### Niet voor

Een Next.js-project met servercomponenten of API-routes: dat is een app, geen statische site, en gaat via een GitHub-workflow op de [App-bundel](/docs/deploy/app) (€ 15). Ook niet voor een map zonder `index.html`.
