open a new terminal
cd frontend
npm install
populate the .env using .env.sample
npm run build
npm run preview
frontend will be running on http://localhost:5173
open a new terminal
cd backend
python3 -m venv venv
source venv/bin/activate
python -m venv venv
venv\Scripts\activate
pip install -r requirements.txt
populate the .env using .env.sample
uvicorn main:app --reload