{"id":16756439,"url":"https://github.com/ly0va/dobby","last_synced_at":"2026-04-30T16:31:22.563Z","repository":{"id":118620081,"uuid":"542860900","full_name":"ly0va/dobby","owner":"ly0va","description":"A database engine as poor as a house elf","archived":false,"fork":false,"pushed_at":"2023-12-04T16:17:20.000Z","size":1104,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-16T06:42:55.888Z","etag":null,"topics":["cli","database","grpc","rest-api","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ly0va.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2022-09-29T01:17:31.000Z","updated_at":"2022-12-11T07:24:20.000Z","dependencies_parsed_at":"2023-09-27T23:16:58.471Z","dependency_job_id":null,"html_url":"https://github.com/ly0va/dobby","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ly0va/dobby","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ly0va%2Fdobby","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ly0va%2Fdobby/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ly0va%2Fdobby/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ly0va%2Fdobby/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ly0va","download_url":"https://codeload.github.com/ly0va/dobby/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ly0va%2Fdobby/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267318790,"owners_count":24068488,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-27T02:00:11.917Z","response_time":82,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","database","grpc","rest-api","rust"],"created_at":"2024-10-13T03:25:53.932Z","updated_at":"2026-04-30T16:31:17.526Z","avatar_url":"https://github.com/ly0va.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# `dobby`\n\n![ci](https://github.com/ly0va/dobby/actions/workflows/ci.yml/badge.svg)\n[![dependency status](https://deps.rs/repo/github/ly0va/dobby/status.svg)](https://deps.rs/repo/github/ly0va/dobby)\n\n\u003cimg align=\"right\" width=\"125\" height=\"125\" src=\"./docs/img/dobby.svg\"\u003e\n\n*A database engine as poor as a house elf*\n\n\u003e **disclaimer**: this is a university project. Please don't jump to any conclusions when you see\n\u003e poorly designed, poorly tested, feature-deprived, underdocumented and/or buggy modules.\n\u003e This is not meant for public use. For educational purposes only.\n\n## About\n\n`dobby` is a homemade table-oriented (but not really relational) database engine with a modular design.\n\n## Features\n\n- :floppy_disk: Basic CRUD operations\n- :gear: Filtering based on column values\n- :hammer_and_wrench: Creating and dropping tables\n- :pencil: Renaming columns\n- :envelope: A modern REST API with OpenAPI spec\n- :package: An even more modern gRPC API\n- :sparkles: A fancy CLI client\n- :wrench: Client code generation\n- :ledger: Logging\n- :feather: Optional [SQLite](sqlite.org) back-end\n- :rocket: Try `dobby` on [Heroku](http://dobby.lyova.xyz)!\n- :computer: Cross-platform!\n- :zap: Blazingly fast!\n\n## Details\n\nYou can read about each module in the docs:\n\n- [Architecture](./docs/architecture.md)\n- [Server](./docs/server.md)\n- [CLI client](./docs/cli.md)\n- [REST service](./docs/rest-api.md)\n- [gRPC service](./docs/grpc-api.md)\n- [SQLite mode](./docs/sqlite.md)\n- [Testing](./docs/testing.md)\n\n## Installation\n\n### Native installation\n\n\u003e **note**: this guide is only applicable for Linux/MacOS users. If you use Windows... why?\n\n**Build dependencies**: Rust 1.56+, Protobuf 3+\n\n```bash\n# rust\n$ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh\n\n# protoc (ubuntu/debian)\n$ apt install -y protobuf-compiler\n\n# protoc (arch)\n$ pacman -S protobuf\n\n# protoc (macOS)\n$ brew install protobuf\n```\n\nInstalling `dobby` via cargo:\n\n```bash\ncargo install --bins --git https://github.com/ly0va/dobby\n```\n\nOr building from source:\n\n```bash\n$ git clone https://github.com/ly0va/dobby\n$ cd dobby\n$ cargo build\n```\n\nThis provides two binaries, `dobbyd` (the daemon) and `dobby` (the client)\n\n### Docker image\n\n```bash\ndocker pull ghcr.io/ly0va/dobby:master\n```\n\n## Credits\n\n- Logo created by [David S](https://thenounproject.com/david.o.s.16/) from The Noun Project\n- Everything else in this repo - by yours truly\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fly0va%2Fdobby","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fly0va%2Fdobby","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fly0va%2Fdobby/lists"}