All Projects → MicroPyramid → Django Blog It

MicroPyramid / Django Blog It

Licence: mit
django blog - complete customization and ready to use with one click installer

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Django Blog It

Try Django 19
Try Django 1.9 is an introduction to Django version 1.9 by creating a simple, yet robust, Django blog. This series covers a variety of Django basics as well as Django 1.9 specific material. Created by Team CFE @ http://joincfe.com.
Stars: ✭ 279 (+62.21%)
Mutual labels:  django-blog, django
Django blog
A blog application made with Django and bootstrap
Stars: ✭ 172 (+0%)
Mutual labels:  django-blog, django
Typeidea
Django企业开发实战对应项目代码
Stars: ✭ 351 (+104.07%)
Mutual labels:  django-blog, django
Django Blog
django搭建博客
Stars: ✭ 365 (+112.21%)
Mutual labels:  django-blog, django
Django Hexo Matery
尝试用Django3重写的我的Hexo博客,使用的前端主题是 Matery。
Stars: ✭ 92 (-46.51%)
Mutual labels:  django-blog, django
Djangocms Blog
django CMS blog application - Support for multilingual posts, placeholders, social network meta tags and configurable apphooks
Stars: ✭ 268 (+55.81%)
Mutual labels:  django-blog, django
Djangoblog
🍺基于Django的博客系统
Stars: ✭ 4,256 (+2374.42%)
Mutual labels:  django-blog, django
Django Practice Book
《Django企业开发实战》已出版
Stars: ✭ 251 (+45.93%)
Mutual labels:  django-blog, django
Django Blog Python Learning
For newest version https://github.com/agusmakmun/python.web.id
Stars: ✭ 77 (-55.23%)
Mutual labels:  django-blog, django
Microsite
Full featured and completely customizable django site for organizations.
Stars: ✭ 75 (-56.4%)
Mutual labels:  django-blog, django
Awesome Django
The Best Django Resource, Awesome Django for mature packages.
Stars: ✭ 591 (+243.6%)
Mutual labels:  django-blog, django
Django Dersleri
YouTube Django Dersleri için proje kaynak kodu
Stars: ✭ 135 (-21.51%)
Mutual labels:  django-blog, django
Geekblog
A full blog system based on Django
Stars: ✭ 123 (-28.49%)
Mutual labels:  django-blog, django
Djangoblog
😱一款基于Django和Boostrap框架的个人博客网站源码
Stars: ✭ 142 (-17.44%)
Mutual labels:  django-blog, django
Django Admin Autocomplete Filter
A simple Django app to render list filters in django admin using autocomplete widget.
Stars: ✭ 166 (-3.49%)
Mutual labels:  django
Rest Api Basics
This is a basic guide on how to build a REST API with Django & Python. For much deeper depth, check out our new course on REST API: (https://kirr.co/90kxtx)
Stars: ✭ 171 (-0.58%)
Mutual labels:  django
Django Pushy
Your push notifications handled at scale.
Stars: ✭ 168 (-2.33%)
Mutual labels:  django
Django Accounting
Accounting pluggable app for Django 1.7+ projects
Stars: ✭ 167 (-2.91%)
Mutual labels:  django
Niji
A pluggable Django forum APP
Stars: ✭ 173 (+0.58%)
Mutual labels:  django
Django Blog Zinnia
Simple yet powerful and really extendable application for managing a blog within your Django Web site.
Stars: ✭ 2,035 (+1083.14%)
Mutual labels:  django

django-blog-it

.. image:: https://readthedocs.org/projects/django-blog-it/badge/?version=latest :target: http://django-blog-it.readthedocs.org/en/latest/?badge=latest

.. image:: https://img.shields.io/pypi/v/django-blog-it.svg :target: https://pypi.python.org/pypi/django-blog-it :alt: Latest Release

.. image:: https://travis-ci.org/MicroPyramid/django-blog-it.svg?branch=master :target: https://travis-ci.org/MicroPyramid/django-blog-it

.. image:: https://coveralls.io/repos/github/MicroPyramid/django-blog-it/badge.svg?branch=master :target: https://coveralls.io/github/MicroPyramid/django-blog-it?branch=master

.. image:: https://img.shields.io/github/license/micropyramid/django-blog-it.svg :target: https://pypi.python.org/pypi/django-blog-it/

.. image:: https://landscape.io/github/MicroPyramid/django-blog-it/master/landscape.svg?style=flat :target: https://landscape.io/github/MicroPyramid/django-blog-it/master :alt: Code Health

.. image:: https://api.codacy.com/project/badge/Grade/7eab875ee3b943d1a3a443f9b5d274b9 :alt: Codacy Badge :target: https://app.codacy.com/app/ashwin/django-blog-it?utm_source=github.com&utm_medium=referral&utm_content=MicroPyramid/django-blog-it&utm_campaign=badger

Simple blog package developed with Django.

Features:

  • Dynamic blog articles
  • Blog pages
  • Contact us page (configurable)
  • google analytics
  • SEO compliant

Installation

  1. Install django-blog-it using the following command::

    pip install django-blog-it

         (or)
    

    git clone git://github.com/micropyramid/django-blog-it.git

    cd django-blog-it

    python setup.py install

  2. Add app name in settings.py::

    INSTALLED_APPS = [ '..................', 'simple_pagination', 'django_blog_it.django_blog_it', '..................' ]

  3. Include the django_blog_it urls in your urls.py::

    from django.conf.urls import include

    urlpatterns = [ url(r'^admin/', admin.site.urls), url(r'', include('django_blog_it.urls')), ]

  4. After installing/cloning this, add the following settings in the virtual env/bin/activate file to start discussions on blog articles ::

    You can create your disqus account at https://disqus.com/profile/login/

    Disquss details

    DISQUSSHORTNAME="Your Disquss Short Name"

    export DISQUSSHORTNAME

    google api key for short url

    API_KEY="google api key"

    export API_KEY

    google captcha

    GOOGLE_CAPTCHA_SITE_KEY="Site key"

    export GOOGLE_CAPTCHA_SITE_KEY

    GOOGLE_CAPTCHA_SECRET_KEY="Secret key"

    export GOOGLE_CAPTCHA_SECRET_KEY

    Google Analytics Account

    GOOGLE_ANALYTICS_ID="UA-123456789"

    export GOOGLE_ANALYTICS_ID

    Google Login

    GP_CLIENT_ID="google client id"

    export GP_CLIENT_ID

    GP_CLIENT_SECRET="secret key"

    export GP_CLIENT_SECRET

    Facebook Login

    FB_APP_ID="facebook app id"

    export FB_APP_ID

    FB_SECRET="023df180c6d868e76a02aec17134c843"

    export FB_SECRET

    Default E-mail

    DEFAULT_EMAIL="[email protected]"

    export DEFAULT_EMAIL

  5. If you cloned the package from git use virtualenv to install requirements::

    pip install -r requirements.txt

You can try it by hosting on your own or deploy to Heroku with a button click.

Deploy To Heroku:

.. image:: https://www.herokucdn.com/deploy/button.svg :target: https://heroku.com/deploy?template=https://github.com/MicroPyramid/django-blog-it

Visit our Django web development page Here_

We welcome your feedback and support, raise github ticket if you want to report a bug. Need new features? Contact us here_

.. _contact us here: https://micropyramid.com/contact-us/ .. _Here: https://micropyramid.com/django-ecommerce-development/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].