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
- Add
'blogs'to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [
...
'blogs',
]
- Include the
djangoblogsURLconf in your project urls.py:
path('blogs/', include('blogs.urls')),
- Run
./mangage.py migrateto create thedjango-blogsmodels.
Contributing
Read the contribution guide here