An installable django blog application.
- Python (3.6, 3.7, 3.8, 3.9, 3.10)
- Django (2.2, 3.0, 3.1, 3.2, 4.0)
- Install using
pip
:
pip install dynamo_blogger
- Add "dynamo_blogger" to your INSTALLED_APPS setting:
INSTALLED_APPS = [
...
'dynamo_blogger',
]
- Include the dynamo_blogger URLs in your project urls.py:
path('blog/', include('dynamo_blogger.urls')),
-
Run
python manage.py migrate
to create thedynamo_blogger
models. -
Start the development server and visit http://127.0.0.1:8000/blog/
Full documentation for the project is available at docs.
You may also want to follow the author on twitter.
Disclaimer: Everything you see here is open and free to use as long as you comply with the license. There are no hidden charges. We promise to do our best to fix bugs and improve the code.