CLI

Run JetClient API requests and tests from the command line without the IDE. Perfect for CI/CD pipelines, automated testing, and headless environments.

Requirements

  • Java 17 or higher

Installation

  1. Download the latest release from GitHub Releases (jetclient-cli.zip or jetclient-cli.tar.gz)

  2. Extract the archive:

# For zip
unzip jetclient-cli.zip

# For tar.gz
tar -xzf jetclient-cli.tar.gz
  1. The extracted folder contains:
jetclient-cli/
├── bin/
│   ├── jetclient      # Unix/macOS launcher
│   └── jetclient.bat  # Windows launcher
└── lib/
    └── ...            # JAR files

Adding to PATH (Recommended)

Unix/macOS - add to ~/.bashrc or ~/.zshrc:

export PATH="$PATH:/path/to/jetclient-cli/bin"

Windows - add to system PATH via Environment Variables:

C:\path\to\jetclient-cli\bin

Quick Start

# Show help
jetclient --help

# Run all tests in current directory
jetclient run .

# Run with specific environment
jetclient run . -e production

# Run specific folder
jetclient run . -i "api/users"

Next