Metadata-Version: 2.1
Name: django-customized-blog-package
Version: 1.0.1
Summary: This package is only used for Blog projects using django
Home-page: https://github.com/AyanNandaGoswami/BlogModule.git
Author: Ayan Nanda Goswami
Author-email: ayan02472@gmail.com
Maintainer: Ayan Nanda Goswami
Maintainer-email: ayan02472@gmail.com
License: MIT
Project-URL: Documentation, https://blog-module-community.herokuapp.com/
Project-URL: Source, https://github.com/AyanNandaGoswami/BlogModule.git
Project-URL: Tracker, https://github.com/AyanNandaGoswami/BlogModule/issues
Keywords: django customized blog package
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/x-rst
License-File: LICENSE

####################
Django Blog Package
####################

This package is for blog projects only. If you want to create a blog app using Django, you can use this package.
No need to write code for blog app, just install this package and it will give you all APIs related to blog.
You can customize these classes according to your needs.

Quick start
============
1. Add below apps into your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...
        'ckeditor',
        'taggit',
        'rest_framework',
        'blog',
    ]

2. Add ckeditor setup codes into your settings.py like this::

    CKEDITOR_UPLOAD_PATH = "articles/body-images/"

    CKEDITOR_CONFIGS = {
        'default': {
            'toolbar': 'full',
            'height': 300,
            'width': 900,
        },
    }


3. Include all the polls URLconf in your project like this::

    urlpatterns = [
        path('ckeditor/', include('ckeditor_uploader.urls')),
        path('articles/', include('blog.urls')),
    ]


4. Run ``python manage.py migrate`` to create all the tables into database.

5. Start the development server and visit http://127.0.0.1:8000/articles/ to perform the CRUD operations.

6. Open this https://blog-module-community.herokuapp.com/ to get more information about this package.


