{% extends "sentry/projects/manage.html" %} {% load i18n %} {% load sentry_helpers %} {% load sentry_plugins %} {% block title %}{% trans "Release Tracking" %} | {{ block.super }}{% endblock %} {% block main %}

{% trans "Release Tracking" %}

Configure release tracking for this project to automatically record new releases of your application.

{% trans "Client Configuration" %}

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.

{% if enabled_plugins or other_plugins %}

{% trans "Token" %}

{% csrf_token %}

Your token is a unique secret which is used to generate deploy hook URLs. If a service becomes compromised, you should regenerate the token and re-configure any deploy hooks with the newly generated URL.

{{ token }}

{% for plugin, content in enabled_plugins %}
{% if plugin.can_disable %}
{% csrf_token %}
{% endif %}

{{ plugin.get_title }}

{{ content }}
{% endfor %} {% if other_plugins %}

{% trans "Inactive Integrations" %}

{% endif %} {% endif %}

{% trans "API" %}

You can notify Sentry when you release new versions of your application via our HTTP API.

See the Releases API documentation for more information.

{% endblock %}