CLI to scaffold fullstack-starter template from GitHub
npm install create-fullstack-starter> CLI tool to quickly scaffold the Fullstack Starter template


English | 한국어
Downloads the fullstack-starter template from GitHub to create a new project.
A production-ready fullstack monorepo template based on Next.js 16, FastAPI, Flutter, Terraform, and mise.
For more details, see the fullstack-starter repository or documentation.
``bashRun with npx
npx create-fullstack-starter my-project
Options
| Option | Description |
|--------|-------------|
|
[directory] | Directory to create the project in (default: interactive prompt) |
| -v, --version | Show version |
| -h, --help | Show help |Next Steps After Creation
`bash
cd my-project
mise install # Install runtimes (Node, Python, Flutter, etc.)
mise run install # Install dependencies
mise infra:up # Start local infrastructure (PostgreSQL, Redis, MinIO)
mise dev # Start development servers
``MIT