中文版请见 README.zh-CN.md
One-command setup for LaunchSaaS — bootstrap your entire vibe coding environment from scratch.
LaunchSaaS is a production-ready SaaS boilerplate built on Next.js. It ships with everything a SaaS product needs — authentication, payments, admin dashboard, transactional email, blog, docs, and internationalization — so you can skip the boilerplate and focus on building your unique product with AI.
Think of it as a complete, proven SaaS business you pick up and make your own with vibe coding.
Installs and configures everything you need to start building with LaunchSaaS:
- Node.js 20+, Git, pnpm, GitHub CLI, Docker
- Your choice of editor (VS Code or Cursor)
- Your choice of AI coding tool (Claude Code or Codex CLI)
- Forks & clones the LaunchSaaS repository to your GitHub account
- Installs project dependencies
- Guides you to start vibe coding with
/launchsaas create
- A LaunchSaaS license (you need access to the private repo)
- A GitHub account (the CLI will help you create one if needed)
Don't know what a terminal is? No worries. Here's how to open it:
Mac:
- Press
Command (⌘) + Spaceto open Spotlight - Type
Terminaland pressEnter
Windows:
- Press
Windows key + R - Type
powershelland pressEnter - If asked "Do you want to allow this app to make changes?", click Yes
Linux:
Press Ctrl + Alt + T
Copy the command below, paste it into the terminal window, and press Enter.
Mac / Linux:
curl -fsSL https://raw.githubusercontent.com/LaunchSaasOrg/launchsaas-cli/main/install.sh | bashWindows:
irm https://raw.githubusercontent.com/LaunchSaasOrg/launchsaas-cli/main/install.ps1 | iexHow to paste in the terminal:
- Mac:
Command (⌘) + V- Windows: right-click inside the window, then click Paste
- Linux:
Ctrl + Shift + V
That's it. The setup wizard will guide you through everything — just follow the on-screen prompts.
launchsaas-cli init # Start fresh setup (default)
launchsaas-cli resume # Resume an interrupted setup
launchsaas-cli doctor # Check and repair environment
launchsaas-cli --help # Show helpOnce the CLI finishes, open your project with your AI coding tool and run the LaunchSaaS skill:
Claude Code:
cd ~/projects/your-project && claude
# then: /launchsaas createCodex:
cd ~/projects/your-project && codex
# then ask Codex to run the launchsaas create skillMIT