Navigate to the frontend/ directory, install the dependencies, and run it:
npm install
npm run devNavigate to the backend/ directory, create a virtual environment, and activate it:
python -m venv .venv
source .venv/bin/activateon Windows:
python -m venv .venv
.venv\Scripts\activateAfter activating the virtual environment, install the required packages for the backend:
pip install -r requirements.txtTo run the backend API:
uvicorn api:app --reloadNavigate to the model/ directory, create a virtual environment, and activate it:
python -m venv .venv
source .venv/bin/activateon Windows:
python -m venv .venv
.venv\Scripts\activateAfter activating the virtual environment, install the required packages for the model:
pip install -r requirements.txt