1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{% extends "_base.html" %}
{% block title %}config{% endblock %}
{% block nav %}
<nav class="page-nav">
<div class="nav-bar">
<a class="nav-wordmark" href="/" aria-label="quire home">
<svg class="q-mark" width="16" height="16" viewBox="0 0 16 16" aria-hidden="true">
<rect x="2" y="2" width="12" height="12" rx="1.2" fill="none" stroke="currentColor" stroke-width="1.2"/>
<line x1="4.5" y1="6" x2="11.5" y2="6" stroke="currentColor" stroke-width="0.8"/>
<line x1="4.5" y1="8" x2="11.5" y2="8" stroke="currentColor" stroke-width="0.8"/>
<line x1="4.5" y1="10" x2="9" y2="10" stroke="currentColor" stroke-width="0.8"/>
<circle cx="11" cy="11" r="3" fill="none" stroke="currentColor" stroke-width="0.8" stroke-dasharray="1.2 1.2" opacity="0.35"/>
</svg>
<span class="nav-wordmark-text">quire</span>
</a>
<span class="sep">/</span>
<span class="nav-crumb">config</span>
</div>
</nav>
{% endblock %}
{% block fullpage %}
<nav class="repo-section-nav">
<span class="repo-position">config</span>
</nav>
<div class="repo-body">
<article class="config-table">
<div class="config-row">
<span class="config-key">port</span>
<span class="config-val">{{ config.port }}</span>
</div>
<div class="config-row">
<span class="config-key">ci.executor</span>
<span class="config-val">{{ config.ci.executor }}</span>
</div>
{% if let Some(sentry) = config.sentry %}
<div class="config-row">
<span class="config-key">sentry.dsn</span>
<span class="config-val">{{ sentry.dsn }}</span>
</div>
{% else %}
<div class="config-row">
<span class="config-key">sentry</span>
<span class="config-val config-val--empty">disabled</span>
</div>
{% endif %}
{% for (key, value) in sorted_secrets() %}
<div class="config-row">
<span class="config-key">secrets.{{ key }}</span>
<span class="config-val">{{ value }}</span>
</div>
{% endfor %}
</article>
<aside class="repo-sidebar">
</aside>
</div>
{% endblock %}