Installation

Pre-compiled binaries (MacOS only)

  1. Download the binary for your system from the GitLab releases page.

  2. Place the binary in your PATH and make it executable.

    cp fodder /usr/local/bin
    chmod +x /usr/local/bin/fodder
    
  3. Run the fodder command to verify that it is working. The first time you run it you will get a warning about the binary being from and unidentified developer. You will need to go to System Preferences > Security & Privacy > General and click Open Anyway to allow the binary to run.

Install from source

This should work for any system that Rust supports. You will need to have Rust installed. See the Rust installation guide for more information.

  1. Clone the repository

  2. Build the binary

    cargo build --release
    
  3. Copy the binary to your PATH

    cp target/release/fodder /usr/local/bin
    
  4. Run the fodder command to verify that it is working.