CLI Tool
The Constellation CLI provides command-line access to compile, execute, and visualize pipelines. It communicates with a running Constellation server via HTTP.
Installation
Coursier (Recommended)
# Add the Constellation channel (once)
cs channel --add https://vledicfranco.github.io/constellation-engine/channel
# Install the CLI
cs install constellation
# Verify installation
constellation --version
# Update to latest
cs update constellation
Manual Installation
# Download the fat JAR
curl -sSL https://github.com/VledicFranco/constellation-engine/releases/download/v0.8.1/constellation-cli.jar -o constellation-cli.jar
# Create launcher script
echo '#!/bin/bash
java -jar /path/to/constellation-cli.jar "$@"' > constellation
chmod +x constellation
mv constellation ~/.local/bin/