Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 442 Bytes

File metadata and controls

33 lines (22 loc) · 442 Bytes

FastAPI REST JSONAPI 🚀

Documentation

You can find the documentation here.

Setup

python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

Launch tests

With coverage

pytest --cov=fastapi_rest_jsonapi --cov-report html tests/

Without coverage

pytest

Launch example app

uvicorn example.app:app --reload