{"id":50464109,"url":"https://github.com/jamesandrewmyers/sqlcipherui","last_synced_at":"2026-06-01T06:04:45.022Z","repository":{"id":360838839,"uuid":"1247288709","full_name":"jamesandrewmyers/sqlcipherui","owner":"jamesandrewmyers","description":"Local web application UI for SQLite3 with support SQLCipher encryption. Features include database explorer, GUI schema designer, and migration/integration tools","archived":false,"fork":false,"pushed_at":"2026-05-28T04:00:34.000Z","size":6301,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-28T05:13:42.979Z","etag":null,"topics":["python","react","sqlcipher","sqlite3"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/jamesandrewmyers.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":null,"dco":null,"cla":null}},"created_at":"2026-05-23T05:51:34.000Z","updated_at":"2026-05-28T04:00:39.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/jamesandrewmyers/sqlcipherui","commit_stats":null,"previous_names":["jamesandrewmyers/sqlcipherui"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/jamesandrewmyers/sqlcipherui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamesandrewmyers%2Fsqlcipherui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamesandrewmyers%2Fsqlcipherui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamesandrewmyers%2Fsqlcipherui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamesandrewmyers%2Fsqlcipherui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jamesandrewmyers","download_url":"https://codeload.github.com/jamesandrewmyers/sqlcipherui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamesandrewmyers%2Fsqlcipherui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33762220,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-01T02:00:06.963Z","response_time":115,"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":["python","react","sqlcipher","sqlite3"],"created_at":"2026-06-01T06:04:40.296Z","updated_at":"2026-06-01T06:04:45.013Z","avatar_url":"https://github.com/jamesandrewmyers.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SQLCipherUI\n\nA local-first database IDE for SQLite and SQLCipher databases. Browse data, write queries, design schemas visually, and build ETL pipelines — all from a single desktop-style interface.\n\n## Features\n\n### IDE Mode\n\nFull-featured database browser with a schema sidebar, tabbed data grid, and SQL query editor.\n\n**Data Browser** — click any table, view, or index in the sidebar to inspect its data, structure, indexes, triggers, and raw SQL definition.\n\n![Data Browser](screenshots/ide-data-browse.png)\n\n**Query Editor** — write and run SQL with syntax highlighting, query history, execution plans, and tabbed results.\n\n![Query Editor](screenshots/ide-query.png)\n\n### Schema Designer\n\nVisual ERD canvas that renders every table, view, index, and trigger as a draggable card with foreign-key relationship lines. Add, modify, or remove any schema entity — all changes queue as a pending changeset with a full DDL preview before you publish.\n\n- Add/remove columns with type, NOT NULL, UNIQUE, default value, and foreign key constraints\n- Edit views, indexes, and triggers in-place\n- FK cascade awareness: deleting a table auto-marks dependent views, indexes, and triggers\n- Cancel individual changes or the entire batch\n\n![Schema Designer](screenshots/schema-designer.png)\n\n### Data Flows\n\nVisual ETL pipeline builder for moving and transforming data across SQLite and SQLCipher databases. Drag nodes from a 41-type catalog, wire them together, configure transforms, and run pipelines in preview, dry-run, or full mode.\n\n**Pipeline Home** — manage pipelines, connections, and templates from a dashboard with run statistics.\n\n![Data Flows Home](screenshots/dataflows-home.png)\n\n**Pipeline Editor** — node library sidebar, SVG canvas with bezier edges and minimap, per-node config inspector, and a bottom dock with preview data, run log, issues, and history tabs.\n\n![Data Flows Editor](screenshots/dataflows-editor.png)\n\n## Architecture\n\nMonorepo with three packages:\n\n| Package | Stack | Purpose |\n|---------|-------|---------|\n| `packages/core` | Python, SQLCipher | Database operations, schema introspection, query execution, pipeline engine |\n| `packages/api` | FastAPI | REST + SSE API layer |\n| `packages/web` | React, Vite, Zustand | Single-page frontend |\n\n## Getting Started\n\n### Prerequisites\n\n- Python 3.11+\n- Node.js 18+\n- SQLCipher development libraries (`brew install sqlcipher` on macOS)\n\n### Install\n\n```bash\n# Backend\ncd packages/core \u0026\u0026 pip install -e . \u0026\u0026 cd ../api \u0026\u0026 pip install -e .\n\n# Frontend\ncd packages/web \u0026\u0026 npm install\n```\n\n### Run\n\n```bash\n# Start both servers\nscripts/devctl start\n\n# Or individually\nscripts/apictl start   # API on :8001\nscripts/webctl start   # Vite on :5273\n```\n\nOpen [http://localhost:5273](http://localhost:5273) in your browser.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjamesandrewmyers%2Fsqlcipherui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjamesandrewmyers%2Fsqlcipherui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjamesandrewmyers%2Fsqlcipherui/lists"}