2011-07-26 18:28:49 +00:00
|
|
|
#!/bin/sh
|
2011-05-13 14:52:07 +00:00
|
|
|
|
2011-06-04 14:57:39 +00:00
|
|
|
#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 12:43:34 +00:00
|
|
|
#Stop the script if its started as root
|
2011-07-26 18:28:49 +00:00
|
|
|
if [ "$(id -u)" -eq 0 ]; then
|
2011-08-02 21:28:17 +00:00
|
|
|
echo "You shouldn't start Etherpad-Lite as root!"
|
|
|
|
echo "Please type 'Etherpad Lite rocks my socks' if you still want to start it as root"
|
|
|
|
read rocks
|
|
|
|
if [ ! $rocks = "Etherpad Lite rocks my socks" ]
|
|
|
|
then
|
|
|
|
echo "You're input was wrong"
|
|
|
|
exit 1
|
|
|
|
fi
|
2011-04-07 13:51:46 +00:00
|
|
|
fi
|
2011-03-26 13:10:41 +00:00
|
|
|
|
2011-07-27 13:37:12 +00:00
|
|
|
#prepare the enviroment
|
|
|
|
bin/installDeps.sh || exit 1
|
2011-06-02 12:43:34 +00:00
|
|
|
|
|
|
|
#Move to the node folder and start
|
|
|
|
echo "start..."
|
2011-04-07 17:54:41 +00:00
|
|
|
cd "node"
|
2011-04-07 13:51:46 +00:00
|
|
|
node server.js
|