{% extends "base.html" %} {% block title %}Integrations{% endblock %} {% block topbar_main %}

Integrations

Issue trackers a plan can be linked to {% endblock %} {% block content %}

Linear

{{ 'configured' if linear_config else 'not configured' }}
{% if linear_config %}
Workspace {{ linear_config.workspace }}
{% endif %}

Set up with flanner linear config PROJECT --workspace acme. With LINEAR_API_KEY set, linking verifies the issue exists and caches its title; without one it stays link-only. The key is read from the environment and never stored on disk.

JIRA

Link-only. Set up with flanner jira config.

{% if linear_links %}
Linked plans {{ linear_links | length }}
{% for link in linear_links %} {% endfor %}
{% endif %}
{% endblock %}