18 lines
522 B
HTML
18 lines
522 B
HTML
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Leistungsbilanz API</title>
|
|
<link rel="stylesheet" href="./styles.css" />
|
|
</head>
|
|
<body>
|
|
<main class="info">
|
|
<h1>Leistungsbilanz Backend</h1>
|
|
<p>Der aktuelle Stand laeuft als TypeScript Node/SQLite API.</p>
|
|
<p>Serverstart: <code>npm run dev</code></p>
|
|
<p>Healthcheck: <code>GET /health</code></p>
|
|
</main>
|
|
</body>
|
|
</html>
|