Ceburasko is simple Django app for storing crashes.
Add 'ceburasko' to your INSTALLED_APPS setting like this:
INSTALLED_APPS = ( ... 'ceburasko', )
Include the ceburasko URLconf in your project urls.py like this:
url(r'^ceburasko/', include('ceburasko.urls')),
Run python manage.py migrate to create the ceburasko models.
Start the development server and visit http://127.0.0.1:8000/admin/ to create a Project and Bug Tracker (you'll need the Admin app enabled).
Upload crashes to http://127.0.0.1:8000/ceburasko/project-1/upload-crash/ in YAML format like this:
stack: - pos: 0
fn: main file: test.c line: 6
kind: Program terminated with signal 6. Aborted. component: test.app version: 1.0
View crashes visiting http://127.0.0.1:8000/ceburasko/project-1/