Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 522 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 522 Bytes

Cadmium-Django SDK

This SDK captures and sends errors from your Django application to the Cadmium server.

Installation

pip install cadmium-django-sdk

Configuration

Add the following to your settings.py:

INSTALLED_APPS += ['cadmium_django']

APPLICATION_ID = "your-application-id"
CD_SECRET = "your-secret"
CD_ID = "your-cd-id"

import cadmium_django
cadmium_django.initialize()

Usage

Once configured, any unhandled exception will automatically be sent to the Cadmium server.