Django Blog It

django blog - complete customization and ready to use with one click installer
Alternatives To Django Blog It
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Djangae58827116 days ago18December 15, 2021111bsd-3-clausePython
The best way to run Django on Google Cloud. This project is now on GitLab: https://gitlab.com/potato-oss/djangae/djangae
Rietveld455
3 years ago238apache-2.0Python
Code Review, hosted on Google App Engine
Django Address356323a year ago15May 06, 202237bsd-3-clausePython
A Django address model and field. Addresses may be specified by address components or by performing an automatic Google Maps lookup.
Django Google Maps252331a year ago20March 22, 202214bsd-2-clausePython
Using the Google Maps API with django model admin
Demo Allauth Bootstrap210
a year ago1otherPython
Django sample app with users including social auth via Django-AllAuth
Django Blog It208
6a year ago8January 28, 201921mitHTML
django blog - complete customization and ready to use with one click installer
Rele1922a month ago27November 15, 202223apache-2.0Python
Easy to use Google Pub/Sub
Hexopress188
2 years ago10Python
A tiny blogging platform that lets you write posts in Google Docs and syncs with a Google Drive directory.
Django Googlecharts187
17 years ago1November 30, 20092otherPython
A suite of Django template tags to generate charts using Google's chart API.
Django Google Analytics168
46 years agoOctober 24, 201812mitPython
A simple django application to using Google Analytics in your project and tying different GA tags to different sites
Alternatives To Django Blog It
Select To Compare


Alternative Project Comparisons
Readme

django-blog-it

https://readthedocs.org/projects/django-blog-it/badge/?version=latest Latest Release https://travis-ci.org/MicroPyramid/django-blog-it.svg?branch=master https://coveralls.io/repos/github/MicroPyramid/django-blog-it/badge.svg?branch=master Code Health Codacy Badge

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:

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

Popular Django Projects
Popular Google Projects
Popular Frameworks Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Python
Html
Django
Google
Secret
Captcha
Django Blog