mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
39 lines
1.2 KiB
Markdown
39 lines
1.2 KiB
Markdown
# Create Better-T-Stack CLI
|
|
|
|
An interactive CLI tool to quickly scaffold full-stack applications using the Better-T-Stack framework.
|
|
|
|
## Quick Start
|
|
|
|
Run without installing globally:
|
|
|
|
```bash
|
|
npx create-better-t-stack
|
|
# OR
|
|
bunx create-better-t-stack
|
|
```
|
|
|
|
Follow the prompts to configure your project.
|
|
|
|
## Usage
|
|
|
|
```bash
|
|
Usage: create-better-t-stack [project-directory] [options]
|
|
|
|
Options:
|
|
-y, --yes Use default configuration
|
|
--database <type> "libsql" (default) or "postgres"
|
|
--auth Enable authentication
|
|
--no-auth Disable authentication
|
|
--docker Include Docker setup
|
|
--github-actions Add GitHub Actions workflows
|
|
--seo Configure SEO optimizations
|
|
--git Initialize a new git repo (default)
|
|
--no-git Skip git initialization
|
|
--npm Use npm as package manager
|
|
--pnpm Use pnpm as package manager
|
|
--yarn Use yarn as package manager
|
|
--bun Use bun as package manager
|
|
-h, --help Display help
|
|
```
|
|
Created by [Nitish Singh](https://github.com/FgrReloaded) & [Aman Varshney](https://github.com/AmanVarshney01)
|