added Malcolm

This commit is contained in:
2021-08-06 10:35:01 +02:00
parent f043730066
commit 70f1922e80
751 changed files with 195277 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#!/bin/bash
SCRIPT_PATH="$( cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
pushd "$SCRIPT_PATH" >/dev/null 2>&1
if [ -e ./pyenv/bin/activate ]; then
source ./pyenv/bin/activate
fi
gunicorn --bind=127.0.0.1:5000 sensor_interface.routes:app
popd >/dev/null 2>&1