Quick Start Guide
Step 1: Installation
🐳 Using Docker (Simplest)
# Start ChronDB with all protocols enabled
docker run -d --name chrondb \
-p 3000:3000 \ # REST API
-p 6379:6379 \ # Redis protocol
-p 5432:5432 \ # PostgreSQL protocol
-v chrondb-data:/data \
avelino/chrondb:latest🧪 Using JAR File
# Download the latest release
curl -L -o chrondb.jar https://github.com/avelino/chrondb/releases/latest/download/chrondb.jar
# Run ChronDB
java -jar chrondb.jar🔧 For Clojure Developers
Step 2: Verify Installation
Step 3: Choose Your Interface
📡 Using the REST API
🔄 Using the Redis Protocol
🗄️ Using the PostgreSQL Protocol
🧩 Using the Clojure API
Step 4: Explore Time Travel Features
REST API Time Travel
Redis Protocol Time Travel
PostgreSQL Protocol Time Travel
Clojure API Time Travel
Step 5: Try Branching (Optional)
REST API Branching
Clojure API Branching
Next Steps
Last updated