Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 322 Bytes

File metadata and controls

18 lines (15 loc) · 322 Bytes

FASTAPI-BE

Create venv

python -m venv mayday

Change Python Dev Env

source ./mayday/Scripts/activate
pip install -r requirements.txt

Start Server

python -m uvicorn main:app --host 0.0.0.0 --port 8000 --reload
python -m uvicorn main:app --host 127.0.0.1 --port 8000 --reload