Django integration
If you are using the SDK in a Django project, you can add kabelwerk to
your INSTALLED_APPS — and the relevant KABELWERK_* variables in your
Django settings will be picked up by the SDK.
# add 'kabelwerk' to your INSTALLED_APPS
INSTALLED_APPS = [
# ...
'kabelwerk',
]
# configure the Kabelwerk SDK
KABELWERK_URL = 'example.kabelwerk.io'
KABELWERK_API_TOKEN = '<secret>'
This way you can keep the Kabelwerk SDK config together with the rest of your settings.