Skip to content

mikedrawback/kaaterskill

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kaaterskill

A minimal, hypermedia blog engine based on the DocJSON document format for Django built with the Django REST framework.

Installation

Install from github:

$pip install git+git://github.com/mikedrawback/kaaterskill

Add the apps below to your installed apps in settings.py:

INSTALLED_APPS = (
    '...',
    'rest_framework',
    'kaaterskill',
    'kaaterskill.blog',
    '...'
)

Add urls to your urls.py:

import kaaterskill.blog.urls

urlpatterns = patterns('',
    ...
    url(r'^blog/', include(kaaterskill.blog.urls)),
)

Setup

Change the title of your blog in your project's settings.py:

KAATERSKILL_SETTINGS = {'title': 'My Blog'}

Set your Django REST Framework renderers in settings.py:

REST_FRAMEWORK = {
    'DEFAULT_RENDERER_CLASSES': (
        'rest_framework_docjson.renderers.DocJSONRenderer',
        'rest_framework.renderers.TemplateHTMLRenderer',
    )
}

About

A minimal hypermedia blog engine based on the DocJSON document format and built with Django REST framework.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published