Developer Tools/Judgment CLI
Installation
The Judgment CLI is a command-line tool for managing your Judgment resources and infrastructure.
Installation
To install the Judgment CLI, follow these steps:
Clone the repository
git clone https://github.com/JudgmentLabs/judgment-cli.git
Navigate to the project directory
cd judgment-cli
Set up a fresh Python virtual environment
Choose one of the following methods to set up your virtual environment:
python -m venv venv
source venv/bin/activate # On Windows, use: venv\Scripts\activate
pipenv shell
uv venv
source .venv/bin/activate # On Windows, use: .venv\Scripts\activate
Install the package
pip install -e .
pipenv install -e .
uv pip install -e .
Verifying the Installation
Available Commands
The Judgment CLI provides the following commands:
Self-Hosting Commands
Command | Description |
---|---|
judgment self-host main | Deploy a self-hosted instance of Judgment (and optionally set up the HTTPS listener) |
judgment self-host https-listener | Set up the HTTPS listener for a self-hosted Judgment instance |
Next Steps
After installing the CLI, you can:
- Learn about setting up a self-hosted Judgment instance through the CLI
- Follow our Getting Started with Self-Hosting guide