An open API service indexing awesome lists of open source software.

https://github.com/softwares-compound/cadmium-django-sdk


https://github.com/softwares-compound/cadmium-django-sdk

Last synced: 18 days ago
JSON representation

Awesome Lists containing this project

README

        

# Cadmium-Django SDK

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

## Installation

```bash
pip install cadmium-django-sdk
```

## Configuration

Add the following to your `settings.py`:

```python
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.