3D-tester/run.sh

14 lines
158 B
Bash
Raw Permalink Normal View History

2021-06-05 18:59:19 +02:00
#!/bin/bash
set -e
DIR=$(dirname "$(readlink -f "$0")")
cd $DIR
echo "Starting server: $DIR/venv/bin/python3 app.py"
$DIR/venv/bin/python3 app.py
exit;