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.
21 lines
825 B
HTML
21 lines
825 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Enrolled - 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>You're Enrolled</h1>
|
|
<p class="subtitle">Your device has been registered</p>
|
|
<p style="color: var(--text-muted); font-size: 13px; line-height: 1.5; margin-bottom: 20px">
|
|
Your UDID has been added to the app store. New builds will include your device automatically. You can now return to <a href="/" style="color: var(--accent)">the app store</a> to install apps.
|
|
</p>
|
|
<a href="/" class="btn" style="display:block;text-align:center">Browse Apps</a>
|
|
</div>
|
|
</body>
|
|
</html>
|