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.
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# This script is designed to handle various operations related to setting up, starting, stopping the python application
|
|
|
|
# It will assume the requirements file is at the root (not with the source code)
|
|
|
|
#
|
|
|
|
|
|
|
|
export PYTHONPATH=$PWD/src
|
|
|
|
pip_upgrade='sandbox/bin/pip freeze|sort |diff requirements.txt -|grep \<|grep -E " .+$" -o'
|
|
|
|
install(){
|
|
|
|
|
|
|
|
virtualenv sandbox
|
|
|
|
sandbox/bin/pip install -r requirements.txt
|
|
|
|
`sandbox/bin/pip freeze|sort |diff requirements.txt -|grep \<|grep -E " .+$" -o|sandbox/bin/pip install --upgrade`
|
|
|
|
|
|
|
|
|
|
|
|
sandbox/bin/python src/data-collector.py --path $PWD/config.json
|