{% extends "sentry/projects/manage.html" %} {% load i18n %} {% load sentry_helpers %} {% load sentry_plugins %} {% block title %}{% trans "Release Tracking" %} | {{ block.super }}{% endblock %} {% block main %}
Configure release tracking for this project to automatically record new releases of your application.
At the very minimum you will need to bind the release
attribute in your application:
// See SDK documentation for language specific usage. Raven.config({ release: '0e4fdef81448dcfa0e16ecc4433ff3997aa53572' });
In addition, configuring a release hook (or other interaction) will ensure accurate metadata around a given release.
You can notify Sentry when you release new versions of your application via our HTTP API.
See the Releases API documentation for more information.