dl Install

Install Datalumo
from your terminal.

One command installs the dl CLI and gets the engine running.

curl -fsSL https://get.datalumo.app/install.sh | sh

Two stacks, one image.

Start simple and upgrade when you need to.

Lite (recommended to start)
One container with embedded SQLite and sqlite-vec. It covers most teams, trials, and smaller corpora, and you back up a single volume.
docker compose -f deploy/docker-compose.lite.yml up -d
Full (production)
Postgres and pgvector for vectors, Redis for rate limiting, Caddy for TLS. Room to scale out when you need it.
docker compose -f deploy/docker-compose.yml up -d

The `dl` CLI is first-class

dl index create support
dl ingest support --file ./content.jsonl
dl app create docs --indexes support
dl sync add # interactive sources
dl env set OPENAI_API_KEY=...
dl doctor

Everything you need to operate lives in the image. No separate control plane to install.