Add minimal add-in playgrounds and orchestrator

This commit is contained in:
2025-12-07 21:26:10 -06:00
parent 40bcd939ff
commit ca95d296b5
54 changed files with 13165 additions and 26764 deletions
@@ -0,0 +1,30 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Minimal Playground Add-in</title>
<link rel="stylesheet" href="/taskpane.css" />
<!-- Office.js is REQUIRED for Office Add-ins -->
<script src="https://appsforoffice.microsoft.com/lib/1.1/hosted/office.js" type="text/javascript"></script>
</head>
<body>
<div class="container">
<header>
<h1>Minimal Playground Add-in</h1>
<p class="muted">One button → generates Managers Info PDF &amp; uploads to SharePoint</p>
</header>
<main>
<button id="uploadBtn" class="primary">Upload Managers Info</button>
<div id="status" aria-live="polite"></div>
</main>
<footer>
<small>Dev only — runs locally against the playground server</small>
</footer>
</div>
<script src="/taskpane.js"></script>
</body>
</html>