Thank you for your interest in contributing to OpenCodeHub! We welcome contributions from everyone.
To contribute code, you need to set up the project locally.
- Node.js: v18 or v20 (LTS).
- Bun: v1.0+ (Our package manager/runner).
- Docker: For running the database locally.
git clone https://github.com/swadhinbiswas/OpencodeHub.git
cd OpencodeHub
# Install dependencies (fast!)
bun installStart a local Postgres and Redis instance using Docker:
docker-compose up -d postgres redisCopy the environment config:
cp .env.example .envNote: The default .env.example is pre-configured to work with the docker-compose services.
Push the schema to the database:
bun db:pushStart the development server:
bun devVisit http://localhost:3000.
We use Vitest for unit tests. Use TDD!
# Run all tests
bun test
# Run specific test file
bun test user.test.ts
# Watch mode
bun test --watchWe use ESLint and Prettier to enforce code style.
- Lint:
bun lint - Format:
bun format
We follow the Conventional Commits specification.
feat: add new login pagefix: resolve crash on startupdocs: update troubleshooting guide
- Fork the repository.
- Create a feature branch:
git checkout -b feat/my-feature. - Commit your changes.
- Push to your fork.
- Open a Pull Request.
- Wait for CI checks to pass.
- A team member will review your code!
Thank you for helping build OpenCodeHub! ❤️