chore(web): improve docs and readme

This commit is contained in:
Aman Varshney
2025-08-08 17:33:15 +05:30
parent 51cfb35912
commit 2df8d44af3
10 changed files with 416 additions and 688 deletions

View File

@@ -23,10 +23,26 @@ Not collected:
Telemetry is enabled by default. To disable:
```bash
# Disable for a single run
BTS_TELEMETRY_DISABLED=1 bun create better-t-stack@latest
```
<Tabs items={['bun', 'pnpm', 'npm']}>
<Tab value="bun">
```bash
# Disable for a single run
BTS_TELEMETRY_DISABLED=1 bun create better-t-stack@latest
```
</Tab>
<Tab value="pnpm">
```bash
# Disable for a single run
BTS_TELEMETRY_DISABLED=1 pnpm create better-t-stack@latest
```
</Tab>
<Tab value="npm">
```bash
# Disable for a single run
BTS_TELEMETRY_DISABLED=1 npx create-better-t-stack@latest
```
</Tab>
</Tabs>
Add `export BTS_TELEMETRY_DISABLED=1` to your shell profile to make it permanent.