Skip to content

Getting Started

Getting Started

Welcome to HeliosDB-Lite! This section will help you get up and running quickly.

Quick Navigation

GuideDescriptionTime
InstallationInstall HeliosDB-Lite for your platform2 min
Quick StartCreate your first database and run queries5 min
Deployment ModesChoose embedded, server, or in-memory mode5 min

Prerequisites

  • Rust 1.70+ (for building from source or using as library)
  • OR Pre-built binaries available for Linux, macOS, Windows

Fastest Path

Terminal window
# Install CLI
cargo install heliosdb-lite
# Start REPL
heliosdb-lite --repl ./mydb
# Create and query
> CREATE TABLE users (id INT PRIMARY KEY, name TEXT);
> INSERT INTO users VALUES (1, 'Alice');
> SELECT * FROM users;

What’s Next?

After getting started, explore: