Everything you need to know about building production-ready MVPs with Nimbus. From setup to deployment.
1. Clone & Install
2. Database Setup
3. Run Development Server
Next.js 15 with App Router
TypeScript
PostgreSQL with Prisma ORM
NextAuth v5
PCI-DSS Compliant Processor
Tailwind CSS
Radix UI
Claude, OpenAI, Gemini, Groq
E2B / Vercel Sandbox
nimbus/ ├── app/ │ ├── (auth)/ # Authentication pages │ │ └── login/ │ ├── (marketing)/ # Public pages │ │ ├── page.tsx # Landing page │ │ ├── pricing/ │ │ ├── how-it-works/ │ │ └── docs/ │ ├── (dashboard)/ # Protected dashboard │ │ └── dashboard/ │ │ ├── page.tsx # Dashboard home │ │ ├── projects/ # Project management │ │ ├── wallet/ # Credits & billing │ │ ├── settings/ # User settings │ │ └── admin/ # Admin panel │ └── api/ # API routes │ ├── projects/ │ ├── tasks/ │ ├── payments/ │ └── sandbox/ ├── components/ │ ├── ui/ # Reusable UI components │ ├── marketing/ # Marketing components │ ├── dashboard/ # Dashboard components │ └── projects/ # Project-specific components ├── lib/ # Utilities and helpers ├── prisma/ │ └── schema.prisma # Database schema └── public/ # Static assets
Get started with 50 free credits. No credit card required.