mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 09:09:36 +02:00
[misc] align directory layout of server-ce/pro with production docker images GitOrigin-RevId: d3e6b9f8793e83df59f86105d511c6fb87c3eea3
10 lines
293 B
Bash
Executable File
10 lines
293 B
Bash
Executable File
#!/bin/bash
|
|
|
|
NODE_PARAMS=""
|
|
if [ "$DEBUG_NODE" == "true" ]; then
|
|
echo "running debug - track-changes"
|
|
NODE_PARAMS="--inspect=0.0.0.0:30150"
|
|
fi
|
|
|
|
exec /sbin/setuser www-data /usr/bin/node $NODE_PARAMS /overleaf/services/track-changes/app.js >> /var/log/sharelatex/track-changes.log 2>&1
|