=========
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
-
Add "cms" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = [
...
'drf_cms',
]
-
Include the drf-cms URLconf in your project urls.py like this::
path('cms/', include('drf_cms.urls')),
-
Run python manage.py migrate
to create the cms models.
Publish instructions:
python setup.py sdist
twine upload dist/*