Metadata-Version: 2.1
Name: django-drf-cms
Version: 0.2.2
Summary: A Django app to build a simple cms restful server.
Home-page: https://www.spartanbits.com
Author: Spartanbits, SLU
Author-email: info@spartanbits.com
License: Apache-2.0
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 4.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software 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

=========
DRF-CMS
=========

DRF-CMS is a Django app to manage non-relational websites content in a restful way.
Elements are key-value and linked to a page, letting the client decide how to compose them.


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

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

    INSTALLED_APPS = [
        ...
        'drf_cms',
    ]

2. Include the drf-cms URLconf in your project urls.py like this::

    path('cms/', include('drf_cms.urls')),

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


Publish instructions:
python setup.py sdist
twine upload dist/*

