Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 392 Bytes

README.md

File metadata and controls

11 lines (10 loc) · 392 Bytes

fast-api-examples

This is a sample project and I will be implementing most commonly methods using FastAPI

Running the app

git clone https://github.com/hasanmehmood/fast-api-examples.git
cd fast-api-examples
python3 -m venv venv3
. venv3/bin/activate
pip install -r requirements.txt
uvicorn main:app --reload

Your app will run on port 8000 by default. --> http://localhost:8000