{% extends "base.html" %} {% block title %}channels ยท Maverick{% endblock %} {% block content %}

channels

{% if channels %} {% for name, cfg in channels.items() %} {% endfor %}
namestatusdetail
{{ name }} {% if cfg.enabled is not defined or cfg.enabled %} enabled {% else %} disabled {% endif %} {% for k, v in cfg.items() if k != 'enabled' %} {{ k }}={% if v is string and v.startswith('${') %}{{ v }}{% else %}{{ v }}{% endif %}{% if not loop.last %}, {% endif %} {% endfor %}
{% else %}

No channels configured. Run maverick init to enable Telegram, Discord, Slack, Signal, etc.

{% endif %}

start the channel server

maverick serve

Channels poll/listen in the background; goals arrive over the network and run through the same swarm.

{% endblock %}