my-app/index.html
Shautvast 521d86e50d Add Hello World test application for Hostityourself
Includes a Node.js HTTP server, static HTML page, and Dockerfile
for containerized self-hosting. Exposes a /health endpoint for
platform health checks.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-19 09:50:54 +01:00

34 lines
783 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello World</title>
<style>
body {
font-family: system-ui, sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
background: #f0f4f8;
}
.card {
background: white;
border-radius: 12px;
padding: 2rem 3rem;
box-shadow: 0 4px 16px rgba(0,0,0,0.1);
text-align: center;
}
h1 { color: #2d3748; margin: 0 0 0.5rem; }
p { color: #718096; margin: 0; }
</style>
</head>
<body>
<div class="card">
<h1>Hello, World!</h1>
<p>Test application for Hostityourself</p>
</div>
</body>
</html>