Skip to content

Latest commit

 

History

History
21 lines (12 loc) · 339 Bytes

README.md

File metadata and controls

21 lines (12 loc) · 339 Bytes

FastAPI example

a simple coding exercise

Run instructions

Install Python 3.8 or later

Install virtualenv

In the command line, clone this repo.

Enter: virtualenv venv

Enter: pip install -r requirements.txt

Enter: uvicorn main:app --reload

To find docs go to http://127.0.0.1:8000/docs

To run tests...

Enter: pytest -1 tests.py