Skip to Content
CLIInstallation

Installation

Prerequisites

Build from source

git clone https://github.com/learnloopllc/cli.git cd cli cargo build --release

This produces two binaries in target/release/:

  • learnloop — full name
  • ll — short alias

Configuration

# Central LearnLoop API export LEARNLOOP_API_URL=https://api.learn-loop.org export LEARNLOOP_LICENSE_KEY=your-license-key # Glow instance (for glow subcommands) export GLOW_API_URL=https://your-instance.example.com

Or pass as flags:

learnloop --license-key your-key glow --instance-url https://your-instance.example.com personas list
Last updated on