First, clone the repository.
go into the backend
cd backend
create a virtual environment with
python3 -m venv env
and activate it with
source env/bin/activate
Second, download the necessary requirements with pip:
pip install -r requirements.txt
To run the app,
python3 app.py
go into the frontend
cd boilermake-xii/frontend
install dependencies
npm install
start the server
npm start