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

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

{% if enabled_plugins or other_plugins %}
{% csrf_token %}
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 %}
{{ content }}
{% endfor %} {% if other_plugins %}
{% endif %} {% endif %}

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 %}