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
70 lines
2.2 KiB
HTML
70 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Settings - Builder</title>
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="header-left"><h1>🔨 Builder</h1></div>
|
|
<nav>
|
|
<a href="/">Builds</a>
|
|
<a href="/devices">Devices</a>
|
|
<a href="/settings" class="active">Settings</a>
|
|
<a href="/logout" class="logout">Logout</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<h1 class="page-title">Settings</h1>
|
|
|
|
<div class="section">
|
|
<h2>App Store Connect API</h2>
|
|
<div class="card">
|
|
<form id="asc-form">
|
|
<div class="field-group">
|
|
<div>
|
|
<label>Key ID</label>
|
|
<input type="text" name="asc_key_id" placeholder="ABC123DEF4" autocomplete="off">
|
|
</div>
|
|
<div>
|
|
<label>Issuer ID</label>
|
|
<input type="text" name="asc_issuer_id" placeholder="00000000-0000-0000-0000-000000000000" autocomplete="off">
|
|
</div>
|
|
</div>
|
|
<label>Private Key (.p8 file)</label>
|
|
<input type="file" id="p8-input" accept=".p8">
|
|
<p id="p8-status" style="font-size:12px;color:var(--text-muted);margin-bottom:12px"></p>
|
|
<div class="btn-row">
|
|
<button type="submit">Save</button>
|
|
<button type="button" id="test-asc" class="btn-secondary">Test Connection</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h2>unraid App Store</h2>
|
|
<div class="card">
|
|
<form id="unraid-form">
|
|
<label>Base URL</label>
|
|
<input type="url" name="unraid_url" placeholder="https://appstore.treytartt.com">
|
|
<label>API Token</label>
|
|
<input type="password" name="unraid_token" placeholder="API token from unraid .env">
|
|
<div class="btn-row">
|
|
<button type="submit">Save</button>
|
|
<button type="button" id="test-unraid" class="btn-secondary">Test Connection</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="toast" class="toast"></div>
|
|
</main>
|
|
|
|
<script src="/js/settings.js"></script>
|
|
</body>
|
|
</html>
|