Initialize work order management system with database schema, API handlers, web client, and Docker configuration.

This commit is contained in:
2026-05-16 16:15:53 -04:00
parent c135722339
commit f904431ec3
28 changed files with 2171 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Work Orders</title>
<link rel="stylesheet" href="/styles/reset.css">
<link rel="stylesheet" href="/styles/global.css">
<!-- Keycloak JS adapter (served by Keycloak itself) -->
<script src="http://localhost:8180/js/keycloak.js"></script>
</head>
<body>
<div id="app">
<p style="padding:2rem;color:#64748b">Connecting to authentication server...</p>
</div>
<script type="module" src="/app.mjs"></script>
</body>
</html>