Phase 4-5: build pipeline + device enrollment
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.
This commit is contained in:
23
views/enroll.html
Normal file
23
views/enroll.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Enroll - App Store</title>
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
</head>
|
||||
<body class="login-page">
|
||||
<div class="login-card">
|
||||
<div class="login-icon">📱</div>
|
||||
<h1>Enroll Device</h1>
|
||||
<p class="subtitle">Register your iPhone/iPad with the app store</p>
|
||||
<p style="color: var(--text-muted); font-size: 13px; line-height: 1.5; margin-bottom: 20px">
|
||||
Tap the button below on your iOS device. iOS will ask you to install a configuration profile — accept it. Your device UDID will be registered automatically.
|
||||
</p>
|
||||
<a href="/enroll/profile.mobileconfig" class="btn" style="display:block;text-align:center">Install Profile</a>
|
||||
<p style="color: var(--text-muted); font-size: 11px; margin-top: 16px">
|
||||
You'll see a "Not Signed" warning — that's expected. Tap "Install" to continue.
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user