Thanks for your interest in contributing! Checkmate is an open-source, friendly project focused on learning and growth.
We truly appreciate all kinds of contributions — code, ideas, translations or documentation. Contributing helps you level up while making the project better for everyone.
Before you start, please take a moment to read the relevant section. It helps us review and accept contributions faster, and makes the whole process smoother for everyone. 💚
PS: We work closely with contributors on our Discord channel. You'll find community members, core maintainers, and first-timers helping each other out.
Before you dive in, make sure you have these installed:
# Check Node.js (v20+ required)
node --version
# Check npm
npm --version
# Check Docker
docker --version
# Check Git
git --versionNew to contributing? Start here:
- Pick a
good-first-issue - Comment that you'd like to work on it
- Follow the setup guide below
- Join our Discord if you get stuck
Ask anything in our Discord server — we're friendly and happy to help. Our core contributors are active and ready to support you. You can also use GitHub Discussions section to ask your questions.
- Search existing issues.
- If it's not listed, open a new issue.
- Include as much detail as possible: what happened, what you expected, and steps to reproduce. Logs and screenshots help.
- Open a new issue with the feature request template.
- Share your use case and why it would help.
- You can discuss it in Discord before you code.
- Node.js (with npm)
- Docker
- Git
git clone https://github.com/bluewave-labs/Checkmate.git
cd CheckmateRun MongoDB container:
docker run -d -p 27017:27017 -v uptime_mongo_data:/data/db --name uptime_database_mongo mongo:8.0Navigate to the server directory:
cd serverInstall dependencies:
npm installCreate a .env file in the server directory with the following minimum required configuration:
CLIENT_HOST="http://localhost:5173"
JWT_SECRET="my_secret_key_change_this"
DB_CONNECTION_STRING="mongodb://localhost:27017/uptime_db"
TOKEN_TTL="99d"
ORIGIN="localhost"
LOG_LEVEL="debug"Environment Variables Explained:
CLIENT_HOST: Frontend URL (default: http://localhost:5173)JWT_SECRET: Secret key for JWT tokens (change to something secure)DB_CONNECTION_STRING: MongoDB connection URLORIGIN: Origin for CORS purposesTOKEN_TTL: Token time to live (in vercel/ms format)LOG_LEVEL: Debug level (debug, info, warn, error)QUEUE_TYPE: Job queue implementation (superSimpleQueueorlessSimpleQueue, optional, default:superSimpleQueue)
Start the backend server:
npm run devThe server will run at http://localhost:52345.
Open a new terminal window and navigate to the client directory from the root:
cd clientInstall dependencies:
npm installCreate a .env file in the client directory:
VITE_APP_API_BASE_URL="http://localhost:52345/api/v1"
VITE_APP_LOG_LEVEL="debug"Environment Variables Explained:
VITE_APP_API_BASE_URL: Backend API URLVITE_APP_LOG_LEVEL: Log level (none, error, warn, debug, info)
Start the frontend:
npm run devThe client will run at http://localhost:5173.
Open your browser and navigate to:
- Frontend: http://localhost:5173
- Backend API: http://localhost:52345
- API Documentation: http://localhost:52345/api-docs
Stop containers:
docker stop uptime_database_mongoStart containers:
docker start uptime_database_mongoRemove containers (if needed):
docker rm uptime_database_mongoPort already in use:
- Check if another service is using ports 5173, 52345, 27017, or 6379
- Stop the conflicting service or change the port in
.envfiles
MongoDB connection issues:
- Verify container is running:
docker ps - Check container logs:
docker logs uptime_database_mongo
Module not found errors:
- Ensure you ran
npm installin bothclientandserverdirectories
Need more help?
- Check the full documentation
- Ask on Discord
- Pick or open an issue (check
good-first-issues first) - (optional but highly suggested) Read a detailed structure of Checkmate if you would like to deep dive into the architecture.
- Ask to be assigned. If there is already someone assigned and it's been more than 7 days, you can raise the flag and ask to be assigned as well.
- Create a branch from
develop. - Write your code.
- Run and test locally.
- Open a PR to
develop.
Start with good first issues.
Documentation contributions are very welcome — fixing a typo, clarifying a step, or adding a missing example is a valuable PR.
- Small edits (typos, wording, formatting): open a PR directly against
develop. - Larger changes (restructuring a section, adding a new guide): open an issue first so we can align on scope, then a PR.
- Screenshots are helpful when documenting UI behaviour.
- README translations live in
docs/translations/. If you're adding a new language, please also add a flag + link to the language bar in the rootREADME.mdand every existing translated README so they stay in sync.
The application uses i18next with one JSON file per language under client/src/locales/ (en.json is the source of truth). English source strings are the definitive copy; other languages are generated as one-time machine translations that anyone is welcome to refine.
To improve an existing language:
- Edit the relevant
client/src/locales/<code>.jsonfile directly. - Keep the JSON key structure identical to
en.json— only translate the string values. - Open a PR against
develop. No language-selector code changes are needed.
To add a new language:
- Add
client/src/locales/<code>.jsonwith the same key structure asen.json, translated. If you can't translate every key, leave unfamiliar strings in English rather than removing keys — i18next falls back to the key path when a value is missing. - Add the display name to
languageNamesinclient/src/Components/inputs/LanguageSelector.tsx(e.g.it: "Italiano"). The selector picks up any language present inresourcesautomatically. - Open a PR against
develop.
If translating a whole file is more than you want to take on, open an issue asking us to add the language and we'll generate an initial machine-translated file that you (or others) can refine over time.
Note: an older workflow that synced translations with PoEditor is still in the repo but no longer authoritative. Please treat the .json files in client/src/locales/ as the source of truth.
Follow the pull request checklist. Your PR should:
- Be focused on one issue.
- Be tested locally.
- Use our linting and translation rules.
- Include the related issue (e.g.
Fixes #123). - Be opened against the
developbranch.
- Use ESLint and Prettier. Run
npm run lintandnpm run format-checkin bothclientandserver. Ifformat-checkreports issues, fix them withnpm run formatbefore committing. - Follow naming conventions:
camelCasefor variables,PascalCasefor components,UPPER_CASEfor constants. - No hard-coded strings — use
t('your.key')for everything visible. - Use the shared theme and components. No magic numbers or hardcoded styles.
- Follow structure and patterns already used in the codebase.
Before submitting your pull request, please confirm the following:
- You have tested the app locally and confirmed your changes work.
- You reviewed your code and removed debug logs or leftover code.
- The GitHub issue is assigned to you.
- You included the related issue number in the PR description (e.g.
Fixes #123). - All user-facing text uses the translation function
t('key'); no hardcoded strings. - You avoided hardcoded URLs, config values, or sensitive data.
- You used the shared theme for any styling — no magic numbers or inline styles.
- The pull request addresses only one issue or topic.
- You added screenshots or a video for any UI-related changes.
- Your code passes
npm run lint,npm run format-check, andnpm run buildin bothclientandserverwith no errors.
If one or more of these are missing, we may ask you to update your pull request before we can merge it.
- Code contributions should go to the
developbranch. masteris used for stable releases.- Use descriptive branch names, like
fix/login-errororfeat/add-alerts. - Make sure that you are using the latest version.
- Make sure you run the code locally. The Checkmate documentation covers it.
- Find out if the functionality is already covered, maybe by an individual configuration.
- Perform a search to see if the enhancement has already been suggested. If it has, add a comment to the existing issue instead of opening a new one.
- Find out whether your idea fits with the scope and aims of the project. It's up to you to make a strong case to convince the project's developers of the merits of this feature. Keep in mind that we want features that will be useful to the majority of our users and not just a small subset. If you're just targeting a minority of users, consider writing an add-on/plugin library.
Thanks for making Checkmate better. We mean it. Whether it's your first pull request or your 50th, we're excited to build with you.
PS: feel free to introduce yourself on Discord and say hi.
-- Checkmate team
Also make sure you read the document about how to make a good pull request.