Begin by having python and node.js installed
- move into "backend" directory
cd backend
- set up the virtual environment
python -m venv venv
venv\Scripts\activate
- install backend requirements
pip install flask flask-cors pandas python-dotenv
- Install frontend dependencies
cd..
cd frontend
npm install
To Run:
cd backend
python app.py
Now, in a second terminal:
cd frontend
npm run dev