OpenTripPlanner/script/otp-ui
2024-10-11 16:27:45 +02:00

9 lines
422 B
Bash
Executable file

#!/bin/bash
# Start the OTP interactive launcher which let you select datasource and OTP arguments before
# starting OTP standalone. The `otp-ui` creates a file in the current directory
JAR_FILE="$(dirname $0)/target/${project.build.finalName}-shaded.jar"
MAIN_CLASS=org.opentripplanner.ext.interactivelauncher.InteractiveOtpMain
echo "Stat OTP Interactive User Interface"
java -Xmx8G -cp ${JAR_FILE} ${MAIN_CLASS} "$@"