https://github.com/ibrahimraimi/litebase
The open infrastructure layer for production-grade SQLite.
https://github.com/ibrahimraimi/litebase
infrastructure platform-engineering sqlite
Last synced: 3 months ago
JSON representation
The open infrastructure layer for production-grade SQLite.
- Host: GitHub
- URL: https://github.com/ibrahimraimi/litebase
- Owner: ibrahimraimi
- Created: 2026-03-13T17:16:56.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-03-13T17:21:45.000Z (3 months ago)
- Last Synced: 2026-03-14T05:26:55.890Z (3 months ago)
- Topics: infrastructure, platform-engineering, sqlite
- Language: Go
- Homepage: https://litebase.dev
- Size: 16.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Security: docs/security.md
Awesome Lists containing this project
README
# Litebase
> The open infrastructure layer for production-grade SQLite.
Litebase is an open source platform that brings a developer-first control plane to SQLite, enabling you to run, manage, and host SQLite databases with a Git-like workflow.
## Core Features
- **SQLite as a Service**: Safe concurrent writes via queueing and enabled WAL mode.
- **RESTful API**: Execute SQL queries securely via HTTP.
- **Developer-First CLI**: Manage your local and remote databases seamlessly (`litebase init`, `litebase link`, `litebase deploy`).
- **Branching & Snapshots (Upcoming)**: Git-like database branching and instant snapshot/restore functionality.
## Architecture
Litebase is built primarily in Go within a monorepo structure:
- `apps/data-plane`: The core execution engine handling isolated SQLite instances, connection pooling, and write serialization.
- `apps/control-plane`: The cloud API managing users, projects, database provisioning, and API keys.
- `packages/cli`: The `litebase` command-line tool for local development and cloud interaction.
- `packages/sdk-go`: The official Go SDK.
- `internal/`: Shared Go packages across the planes.
## Documentation
For a deeper dive into the architecture and capabilities, see our locally hosted [docs](docs/index.md)