Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mishbahr/djangocms-disqus
Disqus intergration for your django-cms powered site with options for Single Sign-On (SSO), lazy loading, analytics and more.
https://github.com/mishbahr/djangocms-disqus
Last synced: about 2 months ago
JSON representation
Disqus intergration for your django-cms powered site with options for Single Sign-On (SSO), lazy loading, analytics and more.
- Host: GitHub
- URL: https://github.com/mishbahr/djangocms-disqus
- Owner: mishbahr
- License: bsd-3-clause
- Created: 2015-09-13T20:07:18.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-12-26T19:52:38.000Z (about 2 years ago)
- Last Synced: 2024-05-12T14:43:01.721Z (8 months ago)
- Language: Python
- Homepage: https://pypi.python.org/pypi/djangocms-disqus
- Size: 29.3 KB
- Stars: 8
- Watchers: 3
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
- awesome-django-cms - djangocms-disqus
README
=============================
djangocms-disqus
=============================.. image:: http://img.shields.io/travis/mishbahr/djangocms-disqus.svg?style=flat-square
:target: https://travis-ci.org/mishbahr/djangocms-disqus/.. image:: http://img.shields.io/pypi/v/djangocms-disqus.svg?style=flat-square
:target: https://pypi.python.org/pypi/djangocms-disqus/
:alt: Latest Version.. image:: http://img.shields.io/pypi/dm/djangocms-disqus.svg?style=flat-square
:target: https://pypi.python.org/pypi/djangocms-disqus/
:alt: Downloads.. image:: http://img.shields.io/pypi/l/djangocms-disqus.svg?style=flat-square
:target: https://pypi.python.org/pypi/djangocms-disqus/
:alt: License.. image:: http://img.shields.io/coveralls/mishbahr/djangocms-disqus.svg?style=flat-square
:target: https://coveralls.io/r/mishbahr/djangocms-disqus?branch=masterDisqus intergration for your django-cms powered site with options for Single Sign-On (SSO), lazy loading, analytics and more.
This project requires `django-connected `_ and ``django-cms`` v3.0 or
higher to be properly installed and configured. When installing the ``djangocms-disqus`` using pip, ``django-connected`` will also be installed automatically.Quickstart
----------1. Install ``djangocms-disqus``::
pip install djangocms-disqus
2. Add ``djangocms_disqus`` to ``INSTALLED_APPS``::
INSTALLED_APPS = (
...
'connected_accounts',
'connected_accounts.providers',
'djangocms_disqus',
...
)3. To enable ``Disqus`` as a provider for ``django-connected`` (register new applications at https://disqus.com/api/applications/register/)::
CONNECTED_ACCOUNTS_DISQUS_CONSUMER_KEY = ''
CONNECTED_ACCOUNTS_DISQUS_CONSUMER_SECRET = ''4. Sync database (requires south>=1.0.1 if you are using Django 1.6.x)::
python manage.py migrate
5. Add the ``DisqusMiddleware`` to ``MIDDLEWARE_CLASSES``::
MIDDLEWARE_CLASSES = (
...
'djangocms_disqus.middleware.DisqusMiddleware',
...
)Preview
-------.. image:: http://mishbahr.github.io/assets/djangocms-disqus/thumbnail/djangocms-disqus-001.png
:target: http://mishbahr.github.io/assets/djangocms-disqus/djangocms-disqus-001.png
:width: 768px
:align: center.. image:: http://mishbahr.github.io/assets/djangocms-disqus/thumbnail/djangocms-disqus-002.png
:target: http://mishbahr.github.io/assets/djangocms-disqus/djangocms-disqus-002.png
:width: 768px
:align: centerYou may also like...
--------------------* djangocms-forms — https://github.com/mishbahr/djangocms-forms
* djangocms-fbcomments - https://github.com/mishbahr/djangocms-fbcomments
* djangocms-gmaps — https://github.com/mishbahr/djangocms-gmaps
* djangocms-instagram — https://github.com/mishbahr/djangocms-instagram
* djangocms-responsive-wrapper — https://github.com/mishbahr/djangocms-responsive-wrapper
* djangocms-twitter2 — https://github.com/mishbahr/djangocms-twitter2
* djangocms-youtube — https://github.com/mishbahr/djangocms-youtube