Skip to content

base-angewandte/base-common-drf

Repository files navigation

base-common-drf

base-common-drf is a Django app with common implementations for base Angewandte projects using Django REST Framework.

Quick start

  1. Install the package:
pip install base-common-drf
  1. Add base_common_drf to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [
    …,
    'base_common_drf',
]