django-rest-framework-app

Sample app using the Django Rest Framework for study purposes.

To run the application:

docker compose up --build -d

Then check http://localhost:8000/docs to see the documentation of this API.

To run tests:

docker compose run --rm  app sh -c "python manage.py test"

To lint with flake8:

docker compose run --rm  app sh -c "flake8"