open a new terminal
cd frontendnpm installpopulate the .env using .env.sample
npm run buildnpm run previewfrontend will be running on http://localhost:5173
open a new terminal
cd backendpython3 -m venv venv
source venv/bin/activatepython -m venv venv
venv\Scripts\activatepip install -r requirements.txtpopulate the .env using .env.sample
uvicorn main:app --reload