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.
bun install
bun db:generate
bun run devEnvironment 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.
NEXT_PUBLIC_DOMAIN=http://localhost:3000
DATABASE_URL=postgres://user:password@localhost:5432/app
AUTH_SECRET=replace-with-a-secure-valueFirst 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.