{% extends "base.html" %} {% block title %}{{ repo_id }} — Configuration — Airut{% endblock %} {% block head_extra %} {% endblock %} {% block body %}
{% if error %}
{{ error }}
{% endif %} {% if buffer %} {# Save bar #}
{%- if dirty_count -%} {{ dirty_count }} unsaved change{{ 's' if dirty_count != 1 else '' }} {%- endif -%}
{# Stale banner #} {% if stale %}
Config changed externally since you started editing. Unsaved changes may be lost. Reload
{% endif %} {# Repo Settings #}

Repository Settings

{# Git & Identity card #}
Git & Identity
{% for f in schema %} {% if f.name == 'git_repo_url' %} {% include "components/config/field.html" %} {% endif %} {% endfor %}
{# Model & Effort card #}
Model & Execution
{% for f in schema %} {% if f.name in ['model', 'effort', 'claude_version'] %} {% include "components/config/field.html" %} {% endif %} {% endfor %}
{# Network card #}
Network
{% for f in schema %} {% if f.name == 'network_sandbox_enabled' %} {% include "components/config/field.html" %} {% endif %} {% endfor %}
{# Container card #}
Container
{% for f in schema %} {% if f.name == 'container_path' %} {% include "components/config/field.html" %} {% endif %} {% endfor %}
{# Resource Limits card #} {% for f in schema %} {% if f.type_tag == 'nested' and f.name == 'resource_limits' %}
Resource Limits
{% include "components/config/nested.html" %}
{% endif %} {% endfor %} {# Channels section #}

Channels

{% include "components/config/channels.html" %} {# Credentials section #}

Credentials

{# Plain secrets (dict[str, str]) #} {% for f in schema %} {% if f.name == 'secrets' %}
Plain Secrets
{% include "components/config/field.html" %}
{% endif %} {% endfor %} {# Masked secrets (keyed collection) #} {% for f in schema %} {% if f.name == 'masked_secrets' %}
Masked Secrets
{% include "components/config/field.html" %}
{% endif %} {% endfor %} {# Signing credentials (keyed collection) #} {% for f in schema %} {% if f.name == 'signing_credentials' %}
Signing Credentials
{% include "components/config/field.html" %}
{% endif %} {% endfor %} {# GitHub App credentials (keyed collection) #} {% for f in schema %} {% if f.name == 'github_app_credentials' %}
GitHub App Credentials
{% include "components/config/field.html" %}
{% endif %} {% endfor %} {# Remove repo #}

Danger Zone

Remove Repository

Remove this repository from the configuration. This does not delete any data on disk — only removes the config entry.

{# Diff dialog #}
Review Changes
Loading...
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}