### Installing Hetty via Snap on Linux Source: https://github.com/dstotijn/hetty/blob/main/README.md This command installs the Hetty HTTP toolkit on Linux distributions that support Snap packages. It uses `sudo` to ensure the necessary permissions for system-wide installation. ```sh sudo snap install hetty ``` -------------------------------- ### Installing Hetty via Homebrew on macOS Source: https://github.com/dstotijn/hetty/blob/main/README.md This command installs the Hetty HTTP toolkit on macOS using the Homebrew package manager. It first taps the official HettySoft tap and then installs the 'hetty' formula. ```sh brew install hettysoft/tap/hetty ``` -------------------------------- ### Starting Hetty Server Source: https://github.com/dstotijn/hetty/blob/main/README.md This is the basic command to start the Hetty server, which includes the MITM proxy, GraphQL service, and web-based admin interface. It will use default configuration paths and the default listen address (:8080). ```sh hetty ``` -------------------------------- ### Installing Hetty via Scoop on Windows Source: https://github.com/dstotijn/hetty/blob/main/README.md This command installs the Hetty HTTP toolkit on Windows using the Scoop package manager. It assumes the hettysoft bucket has already been added. ```sh scoop install hettysoft/hetty ``` -------------------------------- ### Adding Hetty Scoop Bucket on Windows Source: https://github.com/dstotijn/hetty/blob/main/README.md This command adds the official HettySoft Scoop bucket to your Scoop installation on Windows. This bucket contains the manifest necessary to install Hetty via Scoop. ```sh scoop bucket add hettysoft https://github.com/hettysoft/scoop-bucket.git ``` -------------------------------- ### Displaying Hetty Help Options Source: https://github.com/dstotijn/hetty/blob/main/README.md This command shows the usage instructions and available command-line options for the Hetty executable. It lists flags like --cert, --key, --db, --addr, etc., and available subcommands. ```sh hetty --help ``` -------------------------------- ### Running Hetty via Docker Source: https://github.com/dstotijn/hetty/blob/main/README.md This command runs the latest Hetty Docker image, mapping the host's ~/.hetty directory to the container for persistent storage of the database and certificates. It also forwards port 8080 from the container to the host. ```docker docker run -v $HOME/.hetty:/root/.hetty -p 8080:8080 \ ghcr.io/dstotijn/hetty:latest ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.