You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
511 B
Bash

#!/bin/bash
export PYTHONPATH=$PWD/src
install(){
virtualenv sandbox
sandbox/bin/pip install -r requirements.txt
}
start(){
source sandbox/bin/activate
python src/api/index.py --path $PWD/config.json --port 8080 &
}
stop(){
ps -eo pid,command |grep python |grep $PWD |grep -E "^ {0,}[0-9]+" -o |xargs kill -9
}
check(){
pid=`ps -eo pid,command |grep python |grep $PWD |grep -E "^ {0,}[0-9]+" -o -m 1`
if [ "$pid" ]; then
echo "*** Online $pid"
else
echo "*** Offline"
fi
}
status(){
check
}
$1