initial commit

This commit is contained in:
Donald Burr 2015-02-14 21:21:40 -08:00
commit c3b94b7106
91 changed files with 56958 additions and 0 deletions

11
configs/motion/run_server Executable file
View file

@ -0,0 +1,11 @@
#!/bin/bash
export NODE_PATH="$(npm root -g)"
#echo $NODE_PATH
while true; do
if [ -f "STOP" ]; then
rm -f STOP
exit 0
fi
node server.js
sleep 5
done