Files
Naomi Most 3f1963edd7 fix: conductor_server.sh — download JAR to ~/.conductor-cli/, show progress (#990)
* fix: download JAR to ~/.conductor-cli/ instead of current dir (conductor-oss/getting-started#47)

Default CONDUCTOR_HOME to ~/.conductor-cli so the 600 MB JAR doesn't
land in the user's project directory. Also add a size/time warning
before download starts and show a progress bar (--progress-bar forces
one even when not on a TTY, so the one-liner still shows feedback).

* fix: drop hardcoded ~600 MB size from download message

Size can drift across releases; 'large file' wording stays accurate
without maintenance.

* fix: collapse redundant download echo — curl --progress-bar handles feedback
2026-04-10 01:18:57 -07:00

80 lines
2.5 KiB
Bash
Executable File

#!/bin/sh
# Conductor Server Startup Script
# Downloads the server JAR if missing and starts it with java
#
# Usage:
# Interactive: ./conductor_server.sh
# With args: ./conductor_server.sh [PORT] [VERSION]
# ./conductor_server.sh 9090 3.22.0
# ./conductor_server.sh 9090
# ./conductor_server.sh latest (uses default port 8080)
# One-liner: curl -sSL https://raw.githubusercontent.com/conductor-oss/conductor/main/conductor_server.sh | sh
# With args: curl ... | sh -s -- 9090 3.22.0
# Check for Java and version 21+
if ! command -v java >/dev/null 2>&1; then
echo "Error: Java is not installed or not in PATH"
exit 1
fi
JAVA_VERSION=$(java -version 2>&1 | head -n 1 | sed -E 's/.*"([0-9]+).*/\1/')
if [ -z "$JAVA_VERSION" ] || [ "$JAVA_VERSION" -lt 21 ] 2>/dev/null; then
echo "Error: JDK 21 or higher is required. Current version: $(java -version 2>&1 | head -n 1)"
exit 1
fi
# Defaults
SERVER_PORT=8080
CONDUCTOR_VERSION="latest"
REPO_URL="https://conductor-server.s3.us-east-2.amazonaws.com"
# Argument parsing: check if args are port numbers or versions
for arg in "$@"; do
if echo "$arg" | grep -q "^[0-9][0-9]*$"; then
SERVER_PORT="$arg"
else
CONDUCTOR_VERSION="$arg"
fi
done
# If running interactively and no args provided, prompt user
if [ $# -eq 0 ] && [ -z "$CONDUCTOR_PORT" ] && [ -t 0 ]; then
printf "Enter the port for Server [8080]: "
read input_port </dev/tty
if [ -n "$input_port" ]; then
SERVER_PORT="$input_port"
fi
printf "Enter the version [latest]: "
read input_version </dev/tty
if [ -n "$input_version" ]; then
CONDUCTOR_VERSION="$input_version"
fi
elif [ -n "$CONDUCTOR_PORT" ] && [ $# -eq 0 ]; then
SERVER_PORT="$CONDUCTOR_PORT"
fi
JAR_NAME="conductor-server-${CONDUCTOR_VERSION}.jar"
JAR_URL="${REPO_URL}/${JAR_NAME}"
# Use CONDUCTOR_HOME if set, otherwise use ~/.conductor-cli (avoids polluting the project directory)
if [ -z "$CONDUCTOR_HOME" ]; then
CONDUCTOR_HOME="${HOME}/.conductor-cli"
fi
JAR_PATH="$CONDUCTOR_HOME/$JAR_NAME"
# Download JAR if not present
if [ ! -f "$JAR_PATH" ]; then
echo "First run: downloading Conductor Server JAR to $CONDUCTOR_HOME (large file, may take a few minutes)"
mkdir -p "$CONDUCTOR_HOME"
curl -L --progress-bar -o "$JAR_PATH" "$JAR_URL"
if [ $? -ne 0 ]; then
echo "Failed to download Conductor Server JAR from $JAR_URL"
exit 1
fi
echo "Downloaded to $JAR_PATH"
fi
echo "Starting Conductor Server ${CONDUCTOR_VERSION} on port $SERVER_PORT..."
java -jar "$JAR_PATH" --server.port=$SERVER_PORT