Django Blogs

Django blogs provides a WYSIWYG blogging application with medium style editor using Medium-Editor.

Installing

Install with pip using

pip install -U djangoblogs

Quickstart

  1. Add 'blogs' to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [
    ...
    'blogs',
]
  1. Include the djangoblogs URLconf in your project urls.py:
path('blogs/', include('blogs.urls')),
  1. Run ./mangage.py migrate to create the django-blogs models.

Contributing

Read the contribution guide here