Categorized: Django

Installing Django Basic Blog

Somewhere inside a folder that’s on your PYTHONPATH:

svn checkout http://django-basic-apps.googlecode.com/svn/trunk/ basic

Under INSTALLED_APPS in settings.py.:

'tagging',
'basic.blog',
'basic.inlines',
'django.contrib.comments',
'django.contrib.markup',

Be sure you have django-tagging installed.

In your main urls.py:

(r'^blog/', include('basic.blog.urls')),
(r'^comments/', include('django.contrib.comments.urls')), 

Now if you want, you can override the app’s own templates by copying them into your own templates/blog folder.

Comments

jason → January 9th, 2009 at 4:00 am

Works great! thanks..

What do you think about that?

Elsewhere in the empire: Home, Blog, APOD