Re:
Checkout the application live in use at http://agiliq.com/blog
To quickly try it locally:
Step1: cd to the example folder
$cd django-blogango/exmaple/
Step2: Install the requirements in the local folder
$sudo pip install -r ../requirements.txt
Step3: Run the server!
$python manage.py runserver
Requirements:
- django-pingback
- django-xmlrpc
-
django-taggit
pip install -r requirements.txt
To integrate into your application:
- Install the requirements
- Include 'blogango', 'pingback', 'taggit' in installed apps.
-
include blog urls in urls.py
url(r'^blog/', include('blogango.urls')),
-
include 'blogango.context_processors.extra_context' in settings.TEMPLATE_CONTEXT_PROCESSORS
- if the comments have to verified through AKISMET, set AKISMET_API_KEY else set AKISMET_COMMENT = False
-
Enable django admin, if not already enabled.
python manage.py syncdb
-
create blog at '/admin/blogango/blog/add/'
- check your blog at '/blog/'