{% extends "sentry/projects/manage.html" %} {% load i18n %} {% block title %}{% trans "Client Configuration" %} | {{ block.super }}{% endblock %} {% block breadcrumb %} {{ block.super }}
  • {% trans "Client Configuration" %}
  • {% endblock %} {% block inner %} {% if key %}

    {% trans "To start sending events, configure your client with the following DSN value:" %}

    {{ dsn }}

    {% blocktrans with 'https://github.com/getsentry/raven-js' as link %}If this is a client that only needs public access (like raven-js), you can use the following public DSN:{% endblocktrans %}

    {{ dsn_public }}
    {% else %} {% url sentry-project-keys project.slug as link %}

    {% blocktrans %}There is no API key assigned to your account. Generate a new key or select one from the API Keys page.{% endblocktrans %}

    {% endif %}

    {% trans "Choose your platform for quick setup instructions:" %}

    {% include "sentry/partial/_client_config.html" %}

    {% blocktrans with 'http://sentry.readthedocs.org' as link %}For more information on developing clients and the Sentry API, see the documentation.{% endblocktrans %}

    {% endblock %}