python -m venv menv
- For windows -
./menv/Scripts/activate
- For mac -
source menv/bin/activate
- Select python interpreter to be venv
- Install the dependencies using
pip install -r requirements.txt
uvicorn app:app --reload
cd frontend
npm install
npm run dev
This will launch the home page.