25 lines
897 B
HTML
25 lines
897 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>lvmh</title>
|
|
<style>
|
|
body { font-family: system-ui, sans-serif; background: #111; color: #eee; display: grid; place-items: center; height: 100vh; margin: 0; }
|
|
main { text-align: center; }
|
|
code { background: #222; padding: .2em .4em; border-radius: 4px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>lvmh daemon</h1>
|
|
<p>
|
|
Web UI not bundled in this build. Build <code>web/</code> and pass
|
|
<code>--webdist /app/web-dist</code> (or copy <code>web/dist</code> over
|
|
<code>daemon/webdist/</code> before building the image).
|
|
</p>
|
|
<p>API: <code>/api/sessions</code> · agent WS: <code>/agent/ws</code> · web WS: <code>/ws</code></p>
|
|
</main>
|
|
</body>
|
|
</html>
|