mirror of
https://github.com/opentripplanner/OpenTripPlanner.git
synced 2025-02-22 14:54:12 +01:00
9 lines
422 B
Bash
Executable file
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} "$@"
|