https://github.com/softwares-compound/cadmium-django-sdk
https://github.com/softwares-compound/cadmium-django-sdk
Last synced: 18 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/softwares-compound/cadmium-django-sdk
- Owner: softwares-compound
- Created: 2024-11-19T05:12:18.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-12-18T14:02:12.000Z (5 months ago)
- Last Synced: 2025-05-07T13:02:36.750Z (18 days ago)
- Language: Python
- Size: 6.84 KB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.