A minimal monorepo template using Bun workspaces.
├── apps/
│ ├── server/ # Backend application
│ └── client/ # Frontend application
└── packages/
└── shared/ # Shared utilities
bun installbun run --filter @apps/server start
bun run --filter @apps/client start# Root
bun add -d <package>
# Specific workspace
bun add --filter @apps/server <package>