mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
d5dd92c034
[misc] align directory layout of server-ce/pro with production docker images GitOrigin-RevId: d3e6b9f8793e83df59f86105d511c6fb87c3eea3
9 lines
302 B
Bash
Executable file
9 lines
302 B
Bash
Executable file
#!/bin/bash
|
|
|
|
NODE_PARAMS=""
|
|
if [ "$DEBUG_NODE" == "true" ]; then
|
|
echo "running debug - document updater"
|
|
NODE_PARAMS="--inspect=0.0.0.0:30030"
|
|
fi
|
|
|
|
exec /sbin/setuser www-data /usr/bin/node $NODE_PARAMS /overleaf/services/document-updater/app.js >> /var/log/sharelatex/document-updater.log 2>&1
|