Thanks for taking a look at DBX. Whether you fix a typo, improve docs, or tackle a database-specific bug, every PR helps.
- Browse open issues and choose one with no assignee or active contributor in its comments. Do not rely only on labels; read the full report, comments, and screenshots.
- Comment on the issue you want to work on so others do not duplicate the effort. Use
/claimto claim it, or/unclaim(/unclaimedis also accepted) later if you cannot continue. - Fork the repo, create a branch, and open a PR against
main. - After your linked PR is merged, comment
/closeif the issue remains open. The command only works for the current assignee and the author of the merged PR.
If you are not sure what to pick, choose an issue with clear reproduction steps, a small scope, or a database you can verify against a real instance. Follow the complete website tutorial.
- Node.js >= 22.13.0
- pnpm 10.27.0
- Rust >= 1.88
- Make
Linux desktop builds also need WebKit/GTK packages. See README.md for the exact commands.
git clone https://github.com/t8y2/dbx.git
cd dbx
makemake installs dependencies when needed and starts the Tauri desktop dev environment.
Useful shortcuts:
make dev-fast # skip DuckDB during local dev
make dev-web # frontend only
make dev-backend # web backend only
make docs # preview the documentation site
make cargo-check-fast # fast Rust checksAgent driver projects live under agents/. Java/JDBC driver builds and tests require JDK 21; Gradle can auto-download the toolchain when available.
cd agents
./gradlew testDo not manually edit agents/versions.json when changing an existing agent; the release workflow automatically bumps changed modules. Only new drivers add an initial version. New Java/JDBC drivers also update agents/settings.gradle and the supported-agent table; native drivers register their artifacts through the agent authoring/release checklist.
For a real local Java agent test, build the target shadowJar, back up and replace ~/.dbx/agents/drivers/<db_type>/agent.jar, then restart DBX or reconnect the database. See the complete website tutorial for exact commands.
| Path | Purpose |
|---|---|
apps/desktop/src/ |
Vue frontend |
src-tauri/ |
Tauri desktop shell and command layer |
crates/dbx-core/ |
Shared Rust database logic |
crates/dbx-web/ |
Docker / Web HTTP backend |
packages/cli/ |
@dbx-app/cli |
packages/mcp-server/ |
@dbx-app/mcp-server |
packages/mongo-shell/ |
Private MongoDB editor parsing helpers |
docs/ |
Official documentation site |
examples/ |
Sample configs and automation scripts |
agents/ |
JDBC agent driver projects |
Use a short descriptive branch name, for example:
docs/web-api-referencefix/mysql-connection-timeoutfeat/redis-key-search
Keep PRs focused. A docs-only PR should not include unrelated code changes. A bug fix should not also refactor nearby modules unless that refactor is required for the fix.
Write commit messages in plain language:
docs: add web API reference for Docker deploymentsfix(redis): handle empty scan cursorfeat(schema): show catalog info for Doris
Run the checks that match your change:
make cargo-check-fast
make cargo-test-fast
pnpm testFor frontend or package changes, run the relevant package tests under packages/ or packages/app-tests/.
User-facing docs live in two places:
- Repository docs:
README.md,CONTRIBUTING.md, package READMEs, andexamples/ - Website docs:
docs/content/docs/
If you add a new docs page under docs/content/docs/, register it in:
docs/content/docs/meta.jsondocs/content/docs/meta.cn.json
Preview locally with:
make docs- Push your branch to your fork.
- Open a PR against
https://github.com/t8y2/dbxmain. - Link the related issue in the PR description.
- Explain what changed, how you tested it, and any screenshots if the UI changed.
Small PRs are easier to review and merge.
- Documentation improvements and translations
- Reproducible bug fixes with clear before/after behavior
- Database-specific fixes where you can verify against a real instance
- Tests for non-trivial logic changes
- Examples that show CLI, MCP, Docker, or Web API usage
Merged contributors appear on the DBX contributors wall.