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.
- โก No-code platform, easy to use
- ๐๏ธ Based on SQLite, a lightweight database
- ๐ Private and local first
- ๐ฆ Can be packaged into a binary file using Bun
- ๐ช Progressive deployment, from local in single file to cloud complicated stacks.
- ๐ณ Supports Docker deployment
- ๐ ๏ธ Provides a UI for table management
-
Try undb cloud
-
Run with docker
docker run -p 3721:3721 ghcr.io/undb-io/undb:latest
-
Install Bun
Refer to Bun's official documentation for installation instructions.
-
Clone the repository
git clone https://github.com/undb-io/undb.git cd undb
-
Install dependencies
bun install
-
Start the development server
bun run dev
docker compose up -d
then visit http://localhost:3721
- Build
bun run build
-
Build the Docker image
docker build -t undb .
-
Run the Docker container
docker run -d -p 3721:3721 undb