Skip to content

Getting Started

Prerequisites

  • Go 1.26+
  • Make

Build

make build

This creates the kortex-cli binary in the current directory.

Run

# Display help and available commands
./kortex-cli --help

# Execute a specific command
./kortex-cli <command> [flags]

Install

To install the binary to your GOPATH/bin for system-wide access:

make install

Run Tests

# Run all tests
make test

# Run tests with coverage report
make test-coverage