Skip to main content
The presets on this page are starting points. After copying the initial toggles, you still need to clean up CTA copy, navigation, pricing, and page content so they match the features that actually stay enabled.

How to use this page

  1. Pick the scenario closest to your product.
  2. Copy the starting toggles into .env.local.
  3. Fill the minimum env vars for the services you need.
  4. Connect the relevant providers through Services setup.
  5. Run npm run env:check, then continue to Launch checklists.

Pick the closest preset

Presets you can use right away

Good for: idea validation, pre-launch landing pages, or waitlist campaigns.Starting toggles
Minimum env
Do not forget
  • Remove CTA paths that point to login, dashboard, paid pricing, or AI features.
  • If you do not need the contact form yet, you can set NEXT_PUBLIC_ENABLE_CONTACT=false and remove RESEND_API_KEY.
  • The main customization work usually happens in the landing page, hero copy, waitlist CTA, and FAQ content.
Open next: KilatKoding use cases, Customization, and Launch checklists.
Good for: most classic SaaS products with user accounts, dashboards, and billing.Starting toggles
Minimum env
Do not forget
  • Start with one payment provider. You do not need Midtrans and Doku at the same time.
  • SUPABASE_SERVICE_ROLE_KEY matters for server-only writes such as billing, webhooks, audit logs, and signed avatar URLs.
  • If the contact form is not part of the product, you can turn NEXT_PUBLIC_ENABLE_CONTACT off.
Open next: Services setup, Environment variables, and Testing recipes.
Good for: member areas, student dashboards, agency client portals, or internal workspaces.Starting toggles
Minimum env
Optional when needed
Do not forget
  • The main customization work usually happens in dashboard navigation, permissions, and your product-specific data model.
  • If you need signed avatar URLs, audit logs, or admin reporting, add SUPABASE_SERVICE_ROLE_KEY.
  • Because payments stay off, remove upgrade CTA copy, checkout links, and subscription promises.
Open next: Components and UI, Architecture, and Database map.
Good for: AI writing tools, internal copilots, content generators, or paid AI workflows.Starting toggles
Minimum env
Alternative AI provider
Do not forget
  • Align pricing and plan quotas with actual AI cost, not only with the marketing copy.
  • Clean up error handling for rate limits, provider failures, and plan limits before launch.
  • If AI is a premium feature, make sure trial CTA copy, billing, and output guardrails are aligned.
Open next: AI and tooling, End-to-end flows, and Operational runbook.
Good for: client projects that need a landing page, auth, a basic dashboard, and fast rebranding.Starting toggles
Minimum env
Enable this if the client later needs billing
Do not forget
  • Rebranding is more than a logo. Update navigation, legal pages, pricing, email sender, and CTA copy too.
  • Turn off modules that are outside the client scope so handover stays cleaner.
  • Treat this preset as a reusable base, then split it further for each client need.
Open next: Rebranding recipes, Feature toggle matrix, and Testing and deployment.

Common mistakes when using presets

  • Turning NEXT_PUBLIC_ENABLE_PAYMENTS=true on without PAYMENT_PROVIDER and valid provider credentials.
  • Turning NEXT_PUBLIC_ENABLE_AI=true on without AI_DEFAULT_PROVIDER and the correct API key.
  • Leaving navigation, CTA copy, or marketing promises in place for features that have actually been turned off.
  • Treating a preset as a final architecture instead of a safe starting point.

AI prompt you can use right away

If you are still choosing between two presets, read KilatKoding comparison first. Then open Feature toggle matrix to see how each env combination changes the UI, routes, and fallback behavior.