{% extends "base.html" %} {% block title %}Raw Config — MeshCore Bot{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Raw Config

Effective values loaded by the bot (sensitive keys are redacted). This view is read-only.

{{ config_path }}

{% for section_name, options in sections.items() %}

[{{ section_name }}]

{% if options %}
{% for key, val in options.items() %} {% endfor %}
Key Value
{{ key }} {{ val }}
{% else %}

No keys in this section.

{% endif %}
{% endfor %} {% if not sections %}

No configuration sections to display.

{% endif %}
{% endblock %}