New package secubox-app-gk2hub provides: - /usr/bin/gk2hub-generate: Dynamic landing page generator - /www/gk2-hub/index.html: Served via uhttpd Aggregates services from: - Streamlit instances (from UCI config) - MetaBlogizer sites (from /srv/metablogizer/sites/) - Infrastructure services (hardcoded) Auto-regenerates on install via postinst script. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
21 lines
651 B
HTML
21 lines
651 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>GK² Hub - SecuBox Services</title>
|
|
<style>
|
|
body { font-family: system-ui; background: #0a0a0f; color: #e0e0e0; display: flex; justify-content: center; align-items: center; min-height: 100vh; margin: 0; }
|
|
.loading { text-align: center; }
|
|
h1 { color: #00f0ff; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="loading">
|
|
<h1>⚡ GK² Hub</h1>
|
|
<p>Generating service directory...</p>
|
|
<p><small>Run: gk2hub-generate</small></p>
|
|
</div>
|
|
</body>
|
|
</html>
|