Builder service (Mac mini): - Build worker: xcodebuild archive + export + fastlane signing + upload to unraid - /api/build/upload (source archive) and /api/build/git (clone) ingest paths - SSE-streamed build logs, builds list UI, live status updates - /api/devices/from-enrollment bridge endpoint (shared-secret auth) Storefront (unraid): - /enroll/ public flow: landing page, mobileconfig generator, callback parser - Forwards extracted UDIDs to the Mac mini builder for ASC registration - docker-compose.yml now passes BUILDER_URL and BUILDER_SHARED_SECRET Updated CLAUDE.md with full architecture, deploy flow, and gotchas.
41 lines
1.4 KiB
HTML
41 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Builds - Builder</title>
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="header-left"><h1>🔨 Builder</h1></div>
|
|
<nav>
|
|
<a href="/" class="active">Builds</a>
|
|
<a href="/build">New Build</a>
|
|
<a href="/devices">Devices</a>
|
|
<a href="/settings">Settings</a>
|
|
<a href="/logout" class="logout">Logout</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<div style="display:flex;align-items:center;justify-content:space-between;margin-bottom:16px">
|
|
<h1 class="page-title" style="margin-bottom:0">Builds</h1>
|
|
<a href="/build" class="btn-sm" style="background:var(--accent);color:white;padding:8px 16px;border-radius:20px;text-decoration:none;font-weight:600;font-size:14px">+ New Build</a>
|
|
</div>
|
|
|
|
<div id="jobs-container"><div class="card"><p style="color:var(--text-muted)">Loading…</p></div></div>
|
|
|
|
<div id="detail" class="section" style="display:none">
|
|
<h2 id="detail-title">Job details</h2>
|
|
<div class="card">
|
|
<div id="detail-meta" class="mono" style="font-size:12px;color:var(--text-muted);margin-bottom:12px"></div>
|
|
<pre id="log-viewer" class="log-viewer"></pre>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<script src="/js/builds.js"></script>
|
|
</body>
|
|
</html>
|