Installation

Prerequisites

Build from Source

  git clone https://github.com/hahwul/hwaro
cd hwaro
shards install
shards build --release

The binary is created at bin/hwaro.

Add to PATH

  # Option 1: Copy to system path
sudo cp bin/hwaro /usr/local/bin/

# Option 2: Add to user path
export PATH="$PATH:$(pwd)/bin"

Verify Installation

  hwaro --version

Update

  cd hwaro
git pull origin main
shards install
shards build --release