diff --git a/start.sh b/start.sh new file mode 100644 index 0000000..c7f7f8d --- /dev/null +++ b/start.sh @@ -0,0 +1,13 @@ +#!/bin/bash +set -e + +echo "Installing dependencies..." +cd "$(dirname "$0")/backend" +python3 -m pip install -r requirements.txt --quiet + +echo +echo "Starting WireDraw at http://localhost:8000" +echo "Press Ctrl+C to stop." +echo + +python3 run.py