From 90bbe737a2b4938d0a514be19d6111cdbda4bc27 Mon Sep 17 00:00:00 2001 From: ewen Date: Sun, 10 May 2026 23:59:00 +0200 Subject: [PATCH] Add installation instructions to README --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index 180888e..6d29a29 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,27 @@ The application reads connection settings from environment variables: cargo build --release ``` +The binary will be available at `target/release/qbit-tui`. + +## Installing + +To make `qbit-tui` available system wide, copy the built binary into a directory that is in your `PATH`: + +```bash +# For the current user only (recommended) +mkdir -p ~/.local/bin +cp target/release/qbit-tui ~/.local/bin/ + +# Or for all users (requires sudo) +sudo cp target/release/qbit-tui /usr/local/bin/ +``` + +Make sure `~/.local/bin` is in your `PATH`. If not, add this line to your shell profile (`~/.bashrc`, `~/.zshrc`, etc.): + +```bash +export PATH="$HOME/.local/bin:$PATH" +``` + ## Running ```bash