Client Installation

The Haloy CLI tool runs on your local machine and triggers deployments to your servers.

Installation

Install the haloy CLI tool:

curl -fsSL https://sh.haloy.dev/install-haloy.sh | bash

Configure PATH

Ensure ~/.local/bin is in your PATH by adding the following to your ~/.bashrc, ~/.zshrc, or equivalent shell profile:

export PATH="$HOME/.local/bin:$PATH"

Then reload your shell configuration:

source ~/.bashrc # or ~/.zshrc

Verify Installation

Check that haloy is installed correctly:

haloy --version

Uninstalling

To remove the Haloy CLI tool:

curl -sL https://sh.haloy.dev/uninstall-haloy.sh | bash

Next Steps