Django blogs provides a WYSIWYG blogging application with medium style editor using Medium-Editor.
Install with pip using
pip install -U djangoblogs
- Add
'blogs'
to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [
...
'blogs',
]
- Include the
djangoblogs
URLconf in your project urls.py:
path('blogs/', include('blogs.urls')),
- Run
./mangage.py migrate
to create thedjango-blogs
models.