mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
d830224e29
This reverts commit 1764b7e9c0a3891955b97136c2fa0d5821b8f40b, reversing changes made to f1dc05fc8defebf341c320638998947537998192.
19 lines
743 B
Bash
Executable file
19 lines
743 B
Bash
Executable file
#!/bin/bash
|
|
|
|
/opt/envsubst < /envsubst_template.json > /conf/runtime.json
|
|
|
|
VERSION=$(date +%y%m%d%H%M%S)
|
|
|
|
if [ "x$GIT_BRIDGE_JVM_ARGS" == "x" ]; then
|
|
GIT_BRIDGE_JVM_ARGS="-XX:+UseContainerSupport -XX:MaxRAMPercentage=50.0"
|
|
fi
|
|
|
|
if [ "$ENABLE_PROFILE_AGENT" == "true" ]; then
|
|
GIT_BRIDGE_JVM_ARGS="-agentpath:/opt/cprof/profiler_java_agent.so=-cprof_service=git-bridge,-cprof_service_version=${VERSION},-cprof_enable_heap_sampling=true ${GIT_BRIDGE_JVM_ARGS}"
|
|
fi
|
|
|
|
if [ "$ENABLE_DEBUG_AGENT" == "true" ]; then
|
|
GIT_BRIDGE_JVM_ARGS="-agentpath:/opt/cdbg/cdbg_java_agent.so -Dcom.google.cdbg.module=git-bridge -Dcom.google.cdbg.version=$VERSION ${GIT_BRIDGE_JVM_ARGS}"
|
|
fi
|
|
|
|
exec java $GIT_BRIDGE_JVM_ARGS -jar /git-bridge.jar /conf/runtime.json
|