next-forge
Installation
SKILL.md
next-forge
next-forge is a production-grade Turborepo template for building Next.js SaaS applications. It provides a monorepo structure with multiple apps, shared packages, and integrations for authentication, database, payments, email, CMS, analytics, observability, security, and more.
Quick Start
Initialize a new project:
npx next-forge@latest init
The CLI prompts for a project name and package manager (bun, npm, yarn, or pnpm). After installation:
- Set the
DATABASE_URLinpackages/database/.envpointing to a PostgreSQL database (Neon recommended). - Run database migrations:
bun run migrate - Add any optional integration keys to the appropriate
.env.localfiles. - Start development:
bun run dev