Metadata-Version: 2.1
Name: insight-workshop-commons
Version: 0.10
Summary: A Django app which includes commonly used serializer, models, pagination and mixins
Author: Shiva Bahadur Basnet
Author-email: shivabahadurbasnet313@gmail.com
License: MIT
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 4.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.8
License-File: LICENSE

=======
Commons
=======

Commons is a Django app that includes commonly used
serializer, models, pagination and mixins while developing an
API with DjangoRestFramework .


Quick start
-----------

1. Add "commons" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'commons',

    ]

2. Include the polls URLconf in your project urls.py like this:

    path('commons/', include('commons.urls')),

3. Run ``python manage.py migrate`` to create the polls models.

4. Start the development server
