Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 459 Bytes

File metadata and controls

36 lines (24 loc) · 459 Bytes

Create Virtual Environment

python3.10 -m venv .venv

Activate Virtual Enviroment

.venv/Scripts/activate

OR in Mac/Linux

source .venv/bin/activate

Install Requirements

pip install -r requirements.txt

Run Command

uvicorn app.main:app --reload

OR run the following to specify port number and to allow all host:

uvicorn app.main:app --reload --host 0.0.0.0 --port 8000