diff --git a/run.sh b/run.sh index 2b51965..6b3dcf7 100755 --- a/run.sh +++ b/run.sh @@ -1,2 +1,9 @@ -inlets client --remote=104.236.9.120:8090 --upstream=http://127.0.0.1:5000 --token=$1 & +if [ "$#" -ne 3 ]; then + echo usage: $0 " " + exit +fi + +# Run the Flask and Python server through inlets +export DB_LOC=$3 +inlets client --remote=$1 --upstream=http://127.0.0.1:5000 --token=$2 & FLASK_APP=fgs flask run