python3.10 -m venv .venv.venv/Scripts/activateOR in Mac/Linux
source .venv/bin/activatepip install -r requirements.txtuvicorn app.main:app --reloadOR run the following to specify port number and to allow all host:
uvicorn app.main:app --reload --host 0.0.0.0 --port 8000