OpenTripPlanner/script/otp

8 lines
274 B
Bash
Executable file

#!/bin/bash
# Run OTP in standalone mode with the supplied arguments.
# Standalone OTP can build a graph, run an OTP API server,
# or any combination of these.
JAR_FILE="$(dirname $0)/../otp-shaded/target/otp-shaded-2.7.0-SNAPSHOT.jar"
java -Xmx8G -jar "${JAR_FILE}" "$@"