Skip to content

Instantly share code, notes, and snippets.

@lavaldi
Last active December 15, 2015 23:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lavaldi/5338889 to your computer and use it in GitHub Desktop.
Save lavaldi/5338889 to your computer and use it in GitHub Desktop.
#Instala django-disqus
pip install django-disqus
#ó descarga django-disqus.tar.gz de http://pypi.python.org/pypi/django-disqus/
#descomprímelo y córrelo con
python setup.py install
#Luego en setting.py agrega lo siguiente:
INSTALLED_APPS = (
...
'disqus',
)
DISQUS_API_KEY = 'PRUEBAPRUEBAPRUEBAPRUEBAPRUEBAPRUEBA' #reemplazalo por tu API KEY
DISQUS_WEBSITE_SHORTNAME = 'prueba'
#Finalmente, coloca el siguiente código donde quieres cargar Disqus:
{% load disqus_tags %}
{% disqus_show_comments %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment