Dynamo-Blogger

An installable django blog application to quickly bootstrap your client's website project

BSD-3-CLAUSE License

Downloads
42
Stars
3
Committers
2

Blog as a Service

An installable django blog application.

Requirements

  • Python (3.6, 3.7, 3.8, 3.9, 3.10)
  • Django (2.2, 3.0, 3.1, 3.2, 4.0)

Quick Start

  1. Install using pip:
    pip install dynamo_blogger
  1. Add "dynamo_blogger" to your INSTALLED_APPS setting:
    INSTALLED_APPS = [
        ...
        'dynamo_blogger',
    ]
  1. Include the dynamo_blogger URLs in your project urls.py:
    path('blog/', include('dynamo_blogger.urls')),
  1. Run python manage.py migrate to create the dynamo_blogger models.

  2. Start the development server and visit http://127.0.0.1:8000/blog/

Documentation & Support

Full documentation for the project is available at docs.

You may also want to follow the author on twitter.

License

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.