Phase 1-3 of the builder subsystem on the Mac mini: - Express + SQLite + sessions scaffolding, LAN-only service on port 3090 - App Store Connect JWT client (ES256 signing, devices/profiles/bundleIds) - Device management UI with Apple-side registration - Fastlane sigh wrapper with profile cache + auto-install to ~/Library/ - launchd plist + deploy script for Mac mini supervision
28 lines
738 B
HTML
28 lines
738 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>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="/devices">Devices</a>
|
|
<a href="/settings">Settings</a>
|
|
<a href="/logout" class="logout">Logout</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<h1 class="page-title">Builds</h1>
|
|
<div class="card">
|
|
<p style="color: var(--text-muted)">No builds yet. Builds will appear here once the build pipeline (Phase 4) is wired up.</p>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|