mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-08 00:29:04 +02:00
9 lines
268 B
Bash
Executable File
9 lines
268 B
Bash
Executable File
#!/bin/bash
|
|
/opt/envsubst < /envsubst_template.json > /conf/runtime.json
|
|
|
|
if [ "x$GIT_BRIDGE_JVM_ARGS" == "x" ]; then
|
|
GIT_BRIDGE_JVM_ARGS="-XX:+UseContainerSupport -XX:MaxRAMPercentage=50.0"
|
|
fi
|
|
|
|
exec java $GIT_BRIDGE_JVM_ARGS -jar /git-bridge.jar /conf/runtime.json
|