Skip to content
Zutra HyperSaaS — 6 Sprachen, Auth-UI, Dashboard-UI, 69 Tests
Auf Gumroad kaufen

Zutra v1.5.0 — SaaS Landing- & Dashboard-UI-Kit, 6 Sprachen, 69 Tests. Eigenes Backend mitbringen.

Was ist enthalten

Deploy to Vercel

Deploy Zutra HyperSaaS to Vercel in under 5 minutes.

Zutra builds to a fully static site (output: "static"). Vercel serves static sites with zero configuration.

Steps

1. Push to GitHub

git init
git add .
git commit -m "initial commit"
gh repo create my-saas --private --push

2. Import on Vercel

  1. Go to vercel.com/new
  2. Import your GitHub repository
  3. Vercel auto-detects Astro — no framework config needed

3. Set environment variables

In Settings → Environment Variables, add every variable from your .env:

PUBLIC_SUPABASE_URL
PUBLIC_SUPABASE_ANON_KEY
PUBLIC_STRIPE_KEY
STRIPE_SECRET_KEY
RESEND_API_KEY

4. Deploy

Click Deploy. First build takes ~60 seconds. Every subsequent push to main redeploys automatically.

Custom domain

Settings → Domains → Add your domain. Vercel provisions an SSL certificate automatically.

Production checklist

  • SITE_URL in src/site.ts matches your production domain
  • SITE.appUrl in config.ts points to your app subdomain
  • All environment variables set in Vercel dashboard
  • FEATURE_FLAGS.demoDropdown: false (removes the demo nav dropdown)
  • FEATURE_FLAGS.purchaseBanner: false (already the default)