{"id":34632031,"url":"https://github.com/amalshaji/dbcooper","last_synced_at":"2026-02-08T08:03:45.314Z","repository":{"id":330452783,"uuid":"1120409065","full_name":"amalshaji/dbcooper","owner":"amalshaji","description":"A database client for PostgreSQL, SQLite, Redis, and ClickHouse, built with Tauri, React, and TypeScript.","archived":false,"fork":false,"pushed_at":"2026-01-25T21:11:00.000Z","size":14260,"stargazers_count":75,"open_issues_count":4,"forks_count":6,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-25T21:34:05.612Z","etag":null,"topics":["clickhouse","database","database-management","postgresql","redis","sqlite","sqlite3"],"latest_commit_sha":null,"homepage":"https://dbcooper.amal.sh","language":"TypeScript","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/amalshaji.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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-12-21T06:32:22.000Z","updated_at":"2026-01-25T17:05:14.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/amalshaji/dbcooper","commit_stats":null,"previous_names":["amalshaji/dbcooper"],"tags_count":44,"template":false,"template_full_name":null,"purl":"pkg:github/amalshaji/dbcooper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amalshaji%2Fdbcooper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amalshaji%2Fdbcooper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amalshaji%2Fdbcooper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amalshaji%2Fdbcooper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/amalshaji","download_url":"https://codeload.github.com/amalshaji/dbcooper/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amalshaji%2Fdbcooper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29225013,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-08T06:05:31.539Z","status":"ssl_error","status_checked_at":"2026-02-08T05:58:33.853Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["clickhouse","database","database-management","postgresql","redis","sqlite","sqlite3"],"created_at":"2025-12-24T16:52:31.744Z","updated_at":"2026-02-08T08:03:45.309Z","avatar_url":"https://github.com/amalshaji.png","language":"TypeScript","readme":"# DBcooper\n\nA database client for PostgreSQL, SQLite, Redis, and ClickHouse, built with Tauri, React, and TypeScript.\n\n![dbcooper](./docs/public/images/dbcooper.png)\n![aggregation](./docs/public/images/aggregate.png)\n\n## Installation\n\nDownload the latest `.dmg` from [Releases](https://github.com/amalshaji/dbcooper/releases).\n\n**macOS users:** After installing (**before opening the app the first time**), bypass Gatekeeper since the app isn't notarized:\n```bash\nxattr -cr /Applications/DBcooper.app\n```\nThen you can open the app normally.\n\n## Features\n\nCheck out the full list of features on our [documentation site](https://dbcooper.amal.sh/#features).\n\n## FAQ\n\nFind answers to common questions on our [documentation site](https://dbcooper.amal.sh/#faq).\n\n## Tech Stack\n\n- **Frontend**: React + TypeScript + Vite\n- **Backend**: Rust + Tauri v2\n- **Database**: SQLite (local storage) + PostgreSQL (connections)\n- **UI**: shadcn/ui components\n- **Package Manager**: Bun\n\n## Development\n\n### Prerequisites\n\n- [Bun](https://bun.sh/) - JavaScript runtime and package manager\n- [Rust](https://www.rust-lang.org/) - For Tauri backend\n- macOS 26 (Tahoe) or later\n\n### Setup\n\n```bash\n# Install dependencies\nbun install\n\n# Run in development mode\nbun run tauri dev\n\n# Build for production\nbun run tauri build\n```\n\n### AI SQL Generation\n\nTo use AI-powered SQL generation:\n\n1. Go to **Settings** (gear icon) and configure your OpenAI API settings:\n   - **API Key**: Your OpenAI API key (required)\n   - **Endpoint**: Custom endpoint URL (optional, defaults to `https://api.openai.com/v1`)\n\n2. In the **Query Editor**, you'll see an instruction input above the SQL editor:\n   - Type a natural language description (e.g., \"show all users with posts from last week\")\n   - Click **Generate** or press Enter\n   - Watch as SQL streams into the editor in real-time\n\nThe AI uses GPT-4.1 and has access to your database schema (tables and columns) for accurate query generation.\n\n## Building\n\nThe app is configured to build for macOS ARM (Apple Silicon). The build process:\n\n1. Creates optimized production bundles\n2. Signs the app with your signing key\n3. Generates updater artifacts\n\n## Releases\n\nReleases are automated via GitHub Actions. To publish a new version:\n\n1. Update `version` in `src-tauri/tauri.conf.json`\n2. Open a PR and add the `release` label\n3. Merge the PR into `main`\n4. GitHub Actions will create and push the tag (e.g., `v0.0.42`), then build a draft release\n5. Review and publish the release\n\n### Required Secrets\n\nSet these in your GitHub repository settings:\n\n- `TAURI_SIGNING_PRIVATE_KEY` - Contents of your signing key file\n- `TAURI_SIGNING_PRIVATE_KEY_PASSWORD` - Password (if set)\n\n## License\n\nMIT\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famalshaji%2Fdbcooper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famalshaji%2Fdbcooper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famalshaji%2Fdbcooper/lists"}