Skip to content

Introduction

RocketFuel is a command-line tool that bootstraps production-ready Next.js applications with opinionated defaults and optional integrations. Instead of spending hours configuring authentication, payments, databases, and background jobs, RocketFuel sets everything up in seconds.

What You Get

Every RocketFuel project includes:

  • Next.js 15 with App Router and TypeScript
  • Tailwind CSS for styling
  • shadcn/ui component library
  • Drizzle ORM with PostgreSQL support
  • Opinionated folder structure that scales

Optional Features

During project creation, you can choose to add:

FeatureDescription
Better AuthComplete authentication with login/signup pages
StripePayment checkout with webhook handling
BullMQJob queues and background workers with Redis
ResendTransactional email service integration
CLAUDE.mdAI coding assistant documentation

Why RocketFuel?

Building a new SaaS or web application often involves the same setup steps:

  1. Create the Next.js project
  2. Add authentication
  3. Set up the database
  4. Configure payments
  5. Add email sending
  6. Set up background jobs

RocketFuel automates all of this, giving you a head start with battle-tested configurations.

Prerequisites

Before using RocketFuel, ensure you have:

  • Node.js 18+ installed
  • npm, yarn, or pnpm package manager
  • Git for version control
  • PostgreSQL database (local or hosted)
  • Docker (optional, for running Redis locally)

Next Steps

Ready to get started? Head to the Installation guide to install the CLI.