@@ -30,7 +30,7 @@ A modern Next.js starter template featuring **Convex** backend with **Better Aut
3030### Prerequisites
3131
3232- Node.js 18 or later
33- - pnpm package manager
33+ - Bun package manager
3434- GitHub and/or Google OAuth app credentials
3535
3636### Setup Instructions
@@ -40,7 +40,7 @@ A modern Next.js starter template featuring **Convex** backend with **Better Aut
4040``` sh
4141git clone < your-repo-url>
4242cd better-convex
43- pnpm install
43+ bun install
4444```
4545
46462 . ** Set up environment variables:**
@@ -76,15 +76,15 @@ RESEND_API_KEY=your_resend_api_key
7676
7777``` sh
7878# This will start both Next.js and Convex
79- pnpm dev
79+ bun dev
8080```
8181
82825 . ** Initialize Convex environment (first time only):**
8383
8484In a new terminal:
8585
8686``` sh
87- pnpm sync
87+ bun sync
8888```
8989
90906 . ** Open the app:**
@@ -94,9 +94,9 @@ Navigate to [http://localhost:3005](http://localhost:3005)
9494### Database Management
9595
9696``` sh
97- pnpm init # Populate with sample data
98- pnpm reset # Reset all tables
99- pnpm studio # Open Convex dashboard
97+ bun init # Populate with sample data
98+ bun reset # Reset all tables
99+ bun studio # Open Convex dashboard
100100```
101101
102102## Custom Convex Functions
@@ -274,14 +274,14 @@ args: {
274274## Development Commands
275275
276276``` bash
277- pnpm dev # Start dev servers
278- pnpm typecheck # Run TypeScript checks
279- pnpm lint # Check code with Ultracite/Biome
280- pnpm lint:fix # Fix linting and formatting issues
281- pnpm check # Run all checks (lint, ESLint, TypeScript)
282- pnpm seed # Seed database
283- pnpm reset # Reset database
284- pnpm studio # Open Convex dashboard
277+ bun dev # Start dev servers
278+ bun typecheck # Run TypeScript checks
279+ bun lint # Check code with Ultracite/Biome
280+ bun lint:fix # Fix linting and formatting issues
281+ bun check # Run all checks (lint, ESLint, TypeScript)
282+ bun seed # Seed database
283+ bun reset # Reset database
284+ bun studio # Open Convex dashboard
285285```
286286
287287## Best Practices
@@ -481,7 +481,7 @@ After making these changes:
481481
482482``` bash
483483# Regenerate Convex types
484- pnpm dev
484+ bun dev
485485```
486486
487487This will give you a clean authentication-only starter with:
0 commit comments