25 lines
995 B
HTML
25 lines
995 B
HTML
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>Tool Health</title>
|
||
|
|
<script type="module" src="/plugins/a0_software_orchestrator/webui/orchestrator-config-store.js"></script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div x-data>
|
||
|
|
<template x-if="$store.a0SoftwareOrchestratorStore">
|
||
|
|
<div>
|
||
|
|
<h2>Tool Health Status</h2>
|
||
|
|
<table>
|
||
|
|
<tr><th>Tool</th><th>Status</th><th>Fallback</th></tr>
|
||
|
|
<tr><td>Forgejo</td><td id="forgejo-status">Not checked</td><td>Local git</td></tr>
|
||
|
|
<tr><td>Coolify</td><td id="coolify-status">Not checked</td><td>Manual handoff</td></tr>
|
||
|
|
<tr><td>Terminal</td><td id="terminal-status">Available</td><td>-</td></tr>
|
||
|
|
<tr><td>Browser</td><td id="browser-status">Not checked</td><td>Manual QA checklist</td></tr>
|
||
|
|
<tr><td>Git</td><td id="git-status">Available</td><td>-</td></tr>
|
||
|
|
<tr><td>Docker</td><td id="docker-status">Not checked</td><td>Manual compose</td></tr>
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|