docs: corrected startup command mistake

This commit is contained in:
Alexander Daichendt 2025-02-13 17:08:14 +01:00
parent 918924874b
commit 963a37292d

View file

@ -48,19 +48,19 @@ cd client
pnpm install pnpm install
# Install server dependencies # Install server dependencies
cd ../server cd server
bun install bun install
``` ```
3. Start the development servers: 3. Start the development servers:
```bash ```bash
# Start the backend server
cd server
pnpm run dev
# In a new terminal, start the frontend # In a new terminal, start the frontend
cd client cd client
pnpm run dev
# Start the backend server
cd server
bun run dev bun run dev
``` ```