Thank you for your interest in improving The Dev Pocket! Your help is valued — whether you contribute code, documentation, designs, or ideas. This guide explains how to get started, what we expect from contributors, and how to make your first PR successful.
- Fork the repo, create a branch, make small focused changes, and open a PR.
- See
GOOD_FIRST_ISSUES.mdfor bite-sized tasks. - Read our
CODE_OF_CONDUCT.mdand follow it.
Click the Fork button in the top-right of the repository page.
# HTTPS
git clone https://github.com/mr-baraiya/The-Dev-Pocket.git
cd The-Dev-Pocket
# or SSH
git clone git@github.com:mr-baraiya/The-Dev-Pocket.git
cd The-Dev-PocketAlways create a branch for your work:
git checkout -b feat/short-description
# or
git checkout -b fix/short-description- Keep changes focused (one feature/fix per PR).
- Follow the existing code style.
- Use sensible commit messages (imperative tense):
git add .
git commit -m "feat(header): add dark mode toggle"Run the project locally to ensure nothing broke:
# if using pnpm
pnpm install
pnpm dev
# if using npm
npm install
npm run devgit push -u origin feat/short-descriptionGo to GitHub → your fork → Compare & pull request → pick the upstream main as the base and write a clear description.
- PR has a clear title and description explaining why the change is needed.
- Changes are small and focused.
- Code compiles and runs without errors.
- Added or updated documentation when applicable.
- All tests (if any) pass locally.
- No sensitive information (API keys, passwords) committed.
- Add a dark-mode toggle & persist preference.
- Create
CourseCardcomponent and unit tests. - Add a small seed script to populate example AI projects.
- Improve landing page accessibility (ARIA, alt text).
- Add missing images/social preview and update README.
Check GOOD_FIRST_ISSUES.md for more specific tasks with file pointers.
Issue template (short)
Title: [bug|feature] Short description
## Describe the bug / feature
Steps to reproduce / expected behavior
## Environment
- OS:
- Browser:
- Node:
## Additional context
PR template
## What does this PR do?
Short description of changes.
## Motivation
Why is this change needed?
## How to test
Steps to verify the change.
## Checklist
- [ ] I followed the contributing guide
- [ ] Tests added (if applicable)
- [ ] Documentation updated- Install dependencies:
pnpm install(ornpm install). - Create
.env.localfrom.env.exampleand fill secrets (do not commit). - Start dev server:
pnpm dev(ornpm run dev).
If you prefer Docker or have a local database, include instructions in README.md.
- Use TypeScript for new code where possible.
- Keep formatting consistent (Prettier recommended).
- Commit messages: use conventional-ish format e.g.
feat:,fix:,docs:.
- Maintainers will review PRs and request changes if needed.
- Be responsive to review comments — small changes help fast merges.
- If maintainers agree a PR is valid but cannot merge, they may tag it
hacktoberfest-accepted.
- Never add secrets, passwords, or private keys to the repo.
- If you discover a security issue, contact the maintainers privately (see
SECURITY.mdif present).
- Open an issue for help or discussion.
- Join repository Discussions (if enabled) for broader conversation.
Thanks for contributing to The Dev Pocket — your work helps the whole community grow! 🚀

