Diese Seite ist auf Englisch veröffentlicht. Verträge und Richtlinien gelten für alle Märkte in englischer Fassung.
The last mile from repo to production
Preview on every pull request, a green check, and a promote. You should not need a platform team to ship a Tuesday fix.
Start on a platform
Marketing sites and most MVPs land on Vercel or Netlify. Image CDN, preview deploys, and a bill you can read. Leaving later is a DNS and env change, not a rewrite, if the app is Next.js and Postgres.
We move to AWS or GCP when a VPC, a queue, GPU inference, or a data-residency letter says so. That is still this service, quoted as a real landing.

Secrets stay out of the repo
Lint and typecheck on the pull request. Preview URL. Production on main, or a release tag if you want a slower gate. Secrets live in the host. We do not install a Jenkins museum for an app with 40 users.

The pipeline we actually install
This is the shape. Adjust the host. Do not add stages until a failed deploy actually hurts.
name: deploy
on:
pull_request:
push:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npx tsc --noEmit
- run: npm run lint
Ab $190 USD · 1-3 weeks · ca. 170 €