Collection of project templates following best practices.
templates/
├── apps/ # Application templates
│ ├── cli/ # CLI application
│ └── web/ # Web application
└── templates/ # Project templates
├── bun-package/ # Bun package template
├── fullstack-monorepo/ # Full-stack monorepo with Turborepo
├── microservices/ # Microservices architecture with Moonrepo
└── my-config/ # Personal configuration files
bun run dev- Start development serversbun run build- Build all workspacesbun run test- Run testsbun run lint- Run lintingbun run format- Format codebun run verify- Run all checksbun run watch- Watch mode with TUIbun run devtools- Open Turborepo devtools
Modern Bun package template with TypeScript, testing, and best practices.
Full-stack monorepo using Turborepo with multiple apps and shared packages.
Microservices architecture using Moonrepo with API Gateway and multiple services.
Personal configuration files including ESLint, Prettier, TypeScript, and more.
# Install dependencies
bun install
# Start development
bun run dev
# Run tests
bun run test
# Build
bun run buildMIT