Installation¶
Rune is written in Rust. You need Cargo (via rustup) to build the CLI.
Prerequisites¶
- Rust — Install from rustup.rs
Build from Source¶
Option 1: Install Script¶
From the repository root:
This script:
- Runs
cargo build --release -p rune - Copies the binary to
$RUNE_INSTALL(or$HOME/.local/binby default) - Prompts you to add that directory to
PATHif needed
Option 2: Manual Build¶
The binary is at target/release/rune. Optionally, copy it to a directory in your PATH:
Verify Installation¶
Environment Variables¶
| Variable | Default | Description |
|---|---|---|
RUNE_INSTALL | $HOME/.local/bin | Directory where the install script copies the binary |
DATABASE_URL | sqlite:~/.rune/rune.db | SQLite database path for standalone mode |