Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 299 Bytes

DEV.md

File metadata and controls

19 lines (13 loc) · 299 Bytes

Development notes

Install for local development with

conda activate fastapi-yolov5
export PYTHONPATH=$PWD/src
cd src/app && uvicorn main:app --reload

This will start the server on port 8000.

Testing

Run the pytest tests from the root directory with

pytest