mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-11-01 14:20:07 +00:00
18 lines
240 B
Bash
18 lines
240 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
cd `dirname $0`
|
||
|
if [ -d "bin" ]; then
|
||
|
cd "../"
|
||
|
fi
|
||
|
|
||
|
if [ "$(id -u)" -eq 0 ]; then
|
||
|
echo "You may not start the Push-Server as root!"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
echo "Installing dependencies"
|
||
|
npm install
|
||
|
|
||
|
cd "../lib"
|
||
|
|
||
|
/usr/bin/env node server.js
|