Skip to main content

django-blog-pkg is a simple django blog app to help developers add simple blogs to their main projects. The app allows creating, updating and deleting of posts. It also allows comments on each post. Posts can be grouped under different Tags(categries).

Project description

Blog App

django-blog-pkg is a simple django blog app to help developers add simple blogs to their main projects. The app allows creating, updating and deleting of posts. It also allows comments on each post. Posts can be grouped under different Tags(categries).

Detailed documentation is found in the docs directory or visit django-blog-pkgdocumentation.

Installation

  1. Python Package

pip install django-blog-pkg
  1. Other Important apps to DOWNLOAD:

pip install django-crispy-forms

pip install django-ckeditor

  1. settings.py (Important - Please note 'django.contrib.humanize' is required as INSTALLED_APPS):

# Include the following in your INSTALLED_APPS

INSTALLED_APPS = [
    ...
    # The following apps are required:

    'django.contrib.humanize',
    'ckeditor',
    'crispy_forms',

    'blog',
    
]
# add the following directly below the INSTALLED_APPS

CKEDITOR_UPLOAD_PATH = 'uploads/'

CRISPY_TEMPLATE_PACK = 'bootstrap4'


MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')

  1. urls.py

urlpatterns = [
    ...
    path('blog/', include('blog.urls')),
    path('ckeditor/', include('ckeditor_uploader.urls')),
    ...
]
# You can use the URLs provided by blog: `post_list`, `post_detail`, `post_tag`, `post_update`, `post_delete`, `post_create`, `search_blog`, `user_post`

# now add the following lines of code

from django.conf import settings
from django.conf.urls.static import static

if settings.DEBUG:
    urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)


Post Installation

In your Django root execute the command below to create your database tables:

python manage.py makemigrations

python manage.py migrate

Start the development server

python manage.py runserver

and visit http://127.0.0.1:8000/admin/ or http://127.0.0.1:8000/blog/create/new/ to create blog posts (you'll need the Admin app enabled).

Source code

django-blog-pkg

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-blog-pkg-0.0.0.1.tar.gz (12.2 kB view details)

Uploaded Source

File details

Details for the file django-blog-pkg-0.0.0.1.tar.gz.

File metadata

  • Download URL: django-blog-pkg-0.0.0.1.tar.gz
  • Upload date:
  • Size: 12.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.1

File hashes

Hashes for django-blog-pkg-0.0.0.1.tar.gz
Algorithm Hash digest
SHA256 42d04331ddb301495f09175e5f3feefb6d0c1332e3c4ed0388e6bc7efe961f43
MD5 e9ed474c6615895a7c2ab0a5fc5f5a54
BLAKE2b-256 54317a0758e65220d87428609213152fcdd86de15b362052d62f923b04fc3743

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page