a9cd7750f4
CI / detect-changes (push) Waiting to run
CI / build (push) Waiting to run
UI v2 CI / E2E (Mocked) (push) Blocked by required conditions
UI v2 Integration CI / E2E (Integration) (push) Waiting to run
CI / unit-test (push) Blocked by required conditions
CI / test-harness (push) Waiting to run
CI / generate-e2e-matrix (push) Waiting to run
CI / e2e (push) Blocked by required conditions
CI / build-ui (push) Waiting to run
Publish docs via GitHub Pages / Deploy docs (push) Waiting to run
Release Drafter / update_release_draft (push) Waiting to run
UI v2 CI / Lint, Format & Test (push) Waiting to run
80 lines
2.5 KiB
Bash
Executable File
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 |