etherpad-lite/bin/run.sh

26 lines
590 B
Bash
Raw Normal View History

#!/bin/sh
#Move to the folder where ep-lite is installed
FOLDER=$(dirname $(readlink -f $0))
cd $FOLDER
#Was this script started in the bin folder? if yes move out
if [ -d "../bin" ]; then
cd "../"
fi
2011-06-02 14:43:34 +02:00
#Stop the script if its started as root
if [ "$(id -u)" -eq 0 ]; then
2011-04-07 15:51:46 +02:00
echo "You shouldn't start Etherpad-Lite as root!" 1>&2
echo "Use authbind if you want to use a port lower than 1024 -> http://en.wikipedia.org/wiki/Authbind" 1>&2
exit 1
fi
2011-03-26 14:10:41 +01:00
2011-07-27 15:37:12 +02:00
#prepare the enviroment
bin/installDeps.sh || exit 1
2011-06-02 14:43:34 +02:00
#Move to the node folder and start
echo "start..."
cd "node"
2011-04-07 15:51:46 +02:00
node server.js