An open source Kanban Board made by the community, for the community.
Blaboard is an open source Kanban board developed by the BeroLab community. This project was created with the goal of helping beginner developers have their first experience contributing to open source projects, while we build together a useful task management tool.
Anyone can contribute! Whether you're an experienced developer or someone just getting started, you're welcome to participate.
This project uses modern technologies from the JavaScript/TypeScript ecosystem:
| Category | Technology |
|---|---|
| Runtime | Bun |
| Frontend | Next.js 16 + React 19 |
| Styling | Tailwind CSS v4 + shadcn/ui |
| Backend | ElysiaJS |
| Database | MongoDB + Prisma ORM |
| Authentication | Better Auth (Google and GitHub) |
| Monorepo | Turborepo |
| Code Quality | Biome + Husky |
blaboard/
├── apps/
│ ├── web/ # Frontend application (Next.js)
│ └── server/ # Backend API (ElysiaJS)
├── packages/
│ ├── auth/ # Authentication configuration
│ ├── db/ # Database schema and configuration
│ ├── env/ # Type-safe environment variables
│ └── config/ # Shared configurations
Before you begin, make sure you have installed:
Click the "Fork" button in the top right corner of this page to create a copy of the repository in your account.
git clone https://github.com/YOUR-USERNAME/blaboard.git
cd blaboardbun installCopy the example files:
cp apps/server/.env.example apps/server/.env
cp apps/web/.env.example apps/web/.envEdit the .env files with your settings. For social authentication (Google/GitHub), you'll need to create OAuth applications at:
bun run db:start # Start MongoDB in Docker
bun run db:generate # Generate Prisma client
bun run db:push # Apply schema to databasebun run devDone! Access:
- Frontend: http://localhost:3001
- Backend: http://localhost:3000
| Command | Description |
|---|---|
bun run dev |
Start all applications in development mode |
bun run dev:web |
Start only the frontend |
bun run dev:server |
Start only the backend |
bun run build |
Build all applications |
bun run check-types |
Check TypeScript types |
bun run check |
Format and lint code |
bun run db:start |
Start MongoDB container |
bun run db:push |
Apply schema to database |
bun run db:generate |
Generate Prisma client |
bun run db:studio |
Open Prisma Studio interface |
bun run db:stop |
Stop MongoDB container |
We're always looking for collaborators! Here's how you can participate:
Go to the Issues tab of the repository. Look for issues with the labels:
good first issue- Ideal for beginnershelp wanted- We need help with these
Leave a comment saying you want to work on that issue. This prevents two people from working on the same thing.
Important: Always create your branch from staging, which is our reference branch for development.
git checkout staging
git pull origin staging
git checkout -b feat/feature-name
# or
git checkout -b fix/bug-nameDevelop your solution following the project standards. Before committing:
bun run check # Format and check codegit add .
git commit -m "feat: description of your change"
git push origin feat/feature-nameThen, open a Pull Request on GitHub describing your changes.
Interested in contributing to UI/UX? Check out our Figma file with the project prototype:
Blaboard - Figma Prototype - Maintained by Matheus Henry, social link: X
We hold meetings every Wednesday at 6 PM (Brasilia time) in our Discord community. In these meetings we discuss:
- Project progress
- New features
- Contributors' questions
- Planning for upcoming sprints
- Go to berolab.app and sign up for free
- Join our Discord server
- Introduce yourself in the welcome channel
For more information, contact us through our BeroLab Discord server.
This project is licensed under the MIT License. See the LICENSE file for more details.
Made with love by the BeroLab community
