Documentation Index
Fetch the complete documentation index at: https://docs.helix-db.com/llms.txt
Use this file to discover all available pages before exploring further.
For the complete documentation index optimized for AI agents, see llms.txt.For local development, Helix ships a combined
enterprise-dev image that runs a gateway and
database together in a single container. The image supports two storage modes:
- In-memory — fastest to spin up, but data is lost on container restart.
- On-disk — backed by an S3-compatible object store such as MinIO, so data survives restarts and mirrors the production storage path.
- If
PATH_TO_QUERIESis unset, you can still use dynamicPOST /v1/queryrequests. - If
PATH_TO_QUERIESis set, the container loads stored queries from the mountedqueries.jsonfile during startup.
Quick Start with the CLI
The fastest way to get started is the Helix CLI, which wraps theenterprise-dev image and
handles container lifecycle for you:
AI-assisted query authoring
If you’re developing with a coding agent, install the Helix skills bundle to get specialized agents for writing, optimizing, and translating HelixDB queries:helix-query-authoring, helix-query-optimize,
helix-query-json-dynamic, helix-query-from-cypher, and helix-query-from-gremlin. Once
installed, Claude will load the relevant skill automatically when you ask it to write a query,
tune a slow traversal, or translate a Cypher/Gremlin query into the Helix Rust DSL.
Run the command from the root of your Helix project so the skills can inspect your local schema,
edges, and existing queries when generating new ones.
Configuring disk mode
To make disk mode the default for a local instance, initialize or add it with--disk:
helix-db bucket, and keeps the
MinIO volume across helix stop. Use helix prune <instance> to delete the persisted local data.
If you’d rather manage the containers yourself with Docker Compose, the in-memory and on-disk
setups below show the raw image configuration that the CLI disk mode mirrors.
In-Memory
You can add this service to a localdocker-compose.yml:
PATH_TO_QUERIES and the mounted queries.json volume.
On-Disk
For persistent local development, point theenterprise-dev image at an S3-compatible object
store. The example below brings up MinIO, initializes the helix-db bucket, and configures the
enterprise-dev container to read and write to it. Data persists across container restarts as
long as the MinIO volume is preserved.
Environment variables
| Variable | Description |
|---|---|
S3_BUCKET | Bucket the database reads and writes to. |
S3_REGION | Region passed to the S3 client. Any value works against MinIO. |
DB_PATH | Prefix inside the bucket where the database keeps its files. |
AWS_ACCESS_KEY_ID | Access key for the object store. |
AWS_SECRET_ACCESS_KEY | Secret key for the object store. |
AWS_ENDPOINT | Custom endpoint URL — required for MinIO and other non-AWS S3 providers. |
AWS_ALLOW_HTTP | Set to true when the endpoint is plain HTTP (e.g. local MinIO). |
AWS_ENDPOINT and AWS_ALLOW_HTTP to talk to real AWS S3.
Next Steps
Working with Helix Cloud
Authoring
queries.json, deploying stored queries, and the runtime workflow.Querying
Traversal DSL, stored queries, dynamic queries, and transactions.
CLI Getting Started
Install the Helix CLI, scaffold a project, and send your first query.
Local Workflow
Iterate on dynamic JSON queries against a local v2 instance.