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