#!/bin/bash
export PYTHONPATH=$PYTHONPATH:$MIDASSYS/python

# go to dir of this file
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
cd $SCRIPT_DIR

# start the client script, passing commandline args
source venv/bin/activate
python3 run_scheduler.py $@
