feat: habilitar provisionamento desktop e rotas CORS

This commit is contained in:
Esdras Renan 2025-10-08 23:07:49 -03:00
parent 7569986ffc
commit 152550a9a0
19 changed files with 1806 additions and 211 deletions

View file

@ -1,19 +1,23 @@
<!doctype html>
<html lang="en">
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="/src/styles.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sistema de Chamados Desktop</title>
<title>Sistema de Chamados — Agente Desktop</title>
<script type="module" src="/src/main.ts" defer></script>
</head>
<body>
<main style="height: 100vh; display: grid; place-items: center;">
<div style="text-align: center; font-family: system-ui, sans-serif;">
<h1 style="margin-bottom: 0.5rem;">Abrindo Sistema de Chamados…</h1>
<p style="color: #555;">Certifique-se de que o serviço web está disponível em <code>VITE_APP_URL</code>.</p>
</div>
<main id="app-root" class="app-root">
<section class="card">
<header>
<h1>Sistema de Chamados</h1>
<p class="subtitle">Agente desktop para provisionamento de máquinas</p>
</header>
<div id="alert-container" class="alert"></div>
<div id="content"></div>
<p id="status-text" class="status-text"></p>
</section>
</main>
</body>
</html>