mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
36 lines
620 B
Plaintext
36 lines
620 B
Plaintext
---
|
|
title: init
|
|
description: Create a new Better-T-Stack project
|
|
---
|
|
|
|
## Usage
|
|
|
|
<Tabs items={['bun', 'pnpm', 'npm']}>
|
|
<Tab value="bun">
|
|
```bash
|
|
bun create better-t-stack@latest [project-directory]
|
|
```
|
|
</Tab>
|
|
<Tab value="pnpm">
|
|
```bash
|
|
pnpm create better-t-stack@latest [project-directory]
|
|
```
|
|
</Tab>
|
|
<Tab value="npm">
|
|
```bash
|
|
npx create-better-t-stack@latest [project-directory]
|
|
```
|
|
</Tab>
|
|
</Tabs>
|
|
|
|
You can pass `.` to use the current directory.
|
|
|
|
### Skip prompts
|
|
|
|
```bash
|
|
bun create better-t-stack@latest my-app --yes
|
|
```
|
|
|
|
See also: [Compatibility](/docs/compatibility)
|
|
|