first commit

This commit is contained in:
Carla Floricel
2022-08-02 09:52:52 -04:00
parent 417ea8660b
commit 05e52aa52b
10444 changed files with 2300232 additions and 0 deletions

17
run_dashboard.sh Normal file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
cd dashboard
npm start &
P1=$!
activate_venv() {
cd flask-server
source venv/Scripts/activate
}
activate_venv
cd ../..
python dashboard/flask-server/server.py $1 $2 &
P2=$!
wait $P1 $P2