Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 547 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 547 Bytes

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.