Installation
Install qf, the Qualflare CLI tool, on your preferred platform. The CLI is available for macOS, Linux, and Windows across amd64 and arm64 architectures.
Homebrew (macOS/Linux)
The easiest way to install qf on macOS or Linux is via Homebrew:
bash
brew install qualflare/tap/qfTo upgrade:
bash
brew upgrade qualflare/tap/qfBinary Download
Download the precompiled binary from the GitHub releases page.
macOS
bash
# For Apple Silicon (M1/M2/M3)
curl -L https://github.com/qualflare/qualflare-cli/releases/latest/download/qf_darwin_arm64.tar.gz -o qf.tar.gz
tar -xzf qf.tar.gz
sudo mv qf /usr/local/bin/
# For Intel
curl -L https://github.com/qualflare/qualflare-cli/releases/latest/download/qf_darwin_amd64.tar.gz -o qf.tar.gz
tar -xzf qf.tar.gz
sudo mv qf /usr/local/bin/Linux
bash
# For AMD64
curl -L https://github.com/qualflare/qualflare-cli/releases/latest/download/qf_linux_amd64.tar.gz -o qf.tar.gz
tar -xzf qf.tar.gz
sudo mv qf /usr/local/bin/
# For ARM64
curl -L https://github.com/qualflare/qualflare-cli/releases/latest/download/qf_linux_arm64.tar.gz -o qf.tar.gz
tar -xzf qf.tar.gz
sudo mv qf /usr/local/bin/Windows
Download the appropriate ZIP from the GitHub releases page:
qf_windows_amd64.zip- 64-bit Windowsqf_windows_arm64.zip- ARM Windows
Extract the archive and move qf.exe to a directory in your PATH.
Chocolatey (Windows)
powershell
choco install qfTo upgrade:
powershell
choco upgrade qfDocker
bash
docker pull ghcr.io/qualflare/qf:latestRun commands using Docker:
bash
docker run --rm -v $(pwd):/workdir ghcr.io/qualflare/qf:latest upload results.xml --project my-app --api-key YOUR_API_KEYVerify Installation
Confirm that qf is installed correctly:
bash
qf versionYou should see output similar to:
qf version 1.0.0
commit: abc123def
built at: 2025-01-14T10:30:00ZUpgrading
- Homebrew: Run
brew upgrade qualflare/tap/qf - Binary: Download the latest release and replace the existing binary
- Chocolatey: Run
choco upgrade qf - Docker: Run
docker pull ghcr.io/qualflare/qf:latest
Next Steps
After installing qf:
- Learn about the upload command
- Explore other commands
- Set up CI/CD integration