Production-ready starters and app templates for Next.js and React.
This repository collects standalone templates you can use to start a new InsForge app quickly, whether you want a minimal framework starter or a more complete product-style template such as a chatbot, CRM, or e-commerce storefront.
The fastest way to get started is with the InsForge CLI:
npx @insforge/cli createIf you prefer to inspect a template manually, clone this repository, move into a template directory, and follow that template's local setup instructions.
| Template | Framework | Best for | Includes |
|---|---|---|---|
nextjs |
Next.js App Router | Learning how to build a Next.js app with InsForge from a clean starting point | InsForge auth setup, protected route example, OAuth support, Tailwind CSS, starter guidance |
react |
React + Vite | Learning how to use InsForge in a client-side React app | InsForge auth context, protected route example, OAuth support, Tailwind CSS, starter guidance |
| Template | Framework | Best for | Includes |
|---|---|---|---|
chatbot |
Next.js App Router | Building an AI chat product on top of InsForge | Persisted chat history, file uploads, auth, storage, optional Vercel AI Gateway support |
crm |
Next.js App Router | Building an authenticated internal tool or CRM | Sales pipeline, lead management, client flows, RLS, seeded defaults |
e-commerce |
Next.js App Router | Launching a storefront with user accounts and checkout | Seeded catalog, product pages, cart, checkout, account area, analytics |
- Framework starters and app templates built with Next.js, React, and Vite
- UI foundations built with Tailwind CSS across the repository
- Authentication, database, and storage integration with InsForge
- Per-template setup guides and example environment variables for local development
- Deployment paths designed to work well with Vercel
- Templates designed to be adapted into real products
insforge-templates/
├── chatbot/
├── crm/
├── e-commerce/
├── nextjs/
├── react/
└── ...
Each directory is an independent template with its own dependencies, environment variables, and setup instructions.
- Clone the repository.
- Move into the template you want to use.
- Install dependencies with
npm install. - Copy the template's example environment file.
- Follow that template's
README.mdfor any required InsForge migration, local setup, and deployment steps.
For full setup details, go directly to the template README you want to use:
- Open an issue if you believe you've encountered a bug that you want to flag for the team.