Files
cloudron-box/src/scripts/node.sh
T

24 lines
442 B
Bash
Raw Normal View History

#!/bin/bash
set -eu -o pipefail
if [[ ${EUID} -ne 0 ]]; then
echo "This script should be run as root." > /dev/stderr
exit 1
fi
if [[ $# -eq 0 ]]; then
echo "No arguments supplied"
exit 1
fi
if [[ "$1" == "--check" ]]; then
echo "OK"
exit 0
fi
echo "Running node with memory constraints"
2017-04-21 11:50:53 -07:00
exec env "DEBUG=box*,connect-lastmile" "BOX_ENV=cloudron" "NODE_ENV=production" /usr/bin/node --max_old_space_size=150 "$@"