undb
The Open Source no code database / BaaS
UNDB is a no-code platform that can also serve as a Backend as a Service (BaaS). It is based on SQLite and can be packaged into a binary file using Bun for backend service. Additionally, it can be deployed as a service via Docker, offering a UI for table management.

<a href="https://app.undb.io">Website</a> |
<a href="https://docs.undb.io">Documentation</a> |
<a href="https://x.com/unified_undb">Twitter / X</a> |
<a href="https://discord.gg/3rcNdU3y3U">Discord</a> |
<a href="https://app.undb.io/s/v/shrd0q2m4dyijmh">Roadmap</a>
<a href="https://github.com/undb-io/undb/blob/main/LICENSE">
<img src="https://img.shields.io/github/license/undb-io/undb" alt="License">
</a>
<a href="https://github.com/undb-io/undb/releases">
<img src="https://img.shields.io/github/v/release/undb-io/undb" alt="Release">
</a>

Try undb cloud
Run with docker
docker run -p 3721:3721 ghcr.io/undb-io/undb:latest
docker run -d \
-p 3721:3721 \
-v $(pwd)/undb:/usr/src/app/.undb \
--name undb \
ghcr.io/undb-io/undb:latest
Refer to Bun's official documentation for installation instructions.
bash
git clone https://github.com/undb-io/undb.git
cd undb
bash
bun install
bash
bun run dev
docker compose up -d
then visit http://localhost:3721
bash
bun run buildbash
docker build -t undb .
bash
docker run -d -p 3721:3721 undb