Your Product
  • Funktionen
  • Preise
  • FAQ
  • Doku
Loslegen
Your Product
  • Introduction
    • Install Example
    • Configure Example
    • Ship Example
  • Components Example

Search documentation

Search example documentation pages.

Documentation/Install Example

Install Example

Show how customers install dependencies and prepare the local environment.

Install Dependencies

Use this page to show the shortest path from a clean checkout to a running local app.

Keep commands specific and avoid mixing package managers unless your product truly supports multiple flows.

bash
bun install
bun db:generate
bun run dev

Environment File

Document the minimum required environment variables and explain which ones are only needed for optional providers.

Use safe placeholder values and point customers to provider dashboards for real secrets.

dotenv
NEXT_PUBLIC_DOMAIN=http://localhost:3000
DATABASE_URL=postgres://user:password@localhost:5432/app
AUTH_SECRET=replace-with-a-secure-value

First Run

Close with a quick verification step so customers know the setup worked.

This is a good place to mention seed data, demo accounts, or local dashboard links.

Introduction

Use this overview page to introduce your product, audience, and primary setup path.

Configure Example

Explain how customers customize product copy, navigation, theme tokens, and providers.

On this page
Install DependenciesEnvironment FileFirst Run