create-bueno
v0.8.0
Published
Create a new Bueno project
Downloads
94
Maintainers
Readme
create-bueno
A CLI tool to create a new Bueno project.
Usage
bunx create-bueno my-appOr with options:
bunx create-bueno my-app --template default --database sqliteOptions
| Option | Alias | Type | Description |
|--------|-------|------|-------------|
| --template | -t | string | Project template (default, minimal, fullstack, api) |
| --framework | -f | string | Frontend framework (react, vue, svelte, solid) |
| --database | -d | string | Database driver (sqlite, postgresql, mysql) |
| --skip-install | | boolean | Skip dependency installation |
| --skip-git | | boolean | Skip git initialization |
| --docker | | boolean | Include Docker configuration |
| --deploy | | string | Deployment platform (render, fly, railway) |
| --yes | -y | boolean | Use default options without prompts |
Examples
# Create a basic project
bunx create-bueno my-app
# Create an API project
bunx create-bueno my-api --template api
# Create a fullstack project with React
bunx create-bueno my-fullstack --template fullstack --framework react
# Create with PostgreSQL
bunx create-bueno my-project --database postgresql
# Create with Docker
bunx create-bueno my-app --docker
# Create with deployment config
bunx create-bueno my-app --deploy render
# Create with defaults (no prompts)
bunx create-bueno my-app -yLicense
MIT
