Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz Source: /opt/alga-psa on psa.joliet.tech
70 lines
2.2 KiB
HTML
70 lines
2.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta
|
|
http-equiv="Content-Security-Policy"
|
|
content="default-src 'self'; style-src 'self' 'unsafe-inline'; script-src 'self'; img-src 'self' data:; connect-src 'self' https:;"
|
|
/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Secrets Demo Extension</title>
|
|
<style>
|
|
:root {
|
|
color-scheme: light dark;
|
|
--bg: #ffffff;
|
|
--fg: #111827;
|
|
--border: rgba(0,0,0,0.08);
|
|
}
|
|
@media (prefers-color-scheme: dark) {
|
|
:root { --bg: #0b1120; --fg: #e5e7eb; --border: rgba(255,255,255,0.08); }
|
|
}
|
|
body {
|
|
margin: 0;
|
|
font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue, Arial, "Apple Color Emoji", "Segoe UI Emoji";
|
|
background: var(--bg);
|
|
color: var(--fg);
|
|
display: grid;
|
|
place-items: center;
|
|
min-height: 100vh;
|
|
}
|
|
.card {
|
|
border: 1px solid var(--border);
|
|
border-radius: 12px;
|
|
padding: 24px 28px;
|
|
max-width: 520px;
|
|
box-shadow: 0 4px 18px rgba(0,0,0,0.06);
|
|
background: rgba(255,255,255,0.75);
|
|
backdrop-filter: saturate(180%) blur(10px);
|
|
}
|
|
h1 { margin: 0 0 16px; font-size: 24px; }
|
|
p { margin: 0 0 12px; font-size: 14px; opacity: 0.9; }
|
|
.secret {
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
background: rgba(0,0,0,0.05);
|
|
padding: 8px 12px;
|
|
border-radius: 6px;
|
|
margin: 8px 0;
|
|
font-size: 12px;
|
|
word-break: break-all;
|
|
}
|
|
.error {
|
|
color: #dc2626;
|
|
background: rgba(220,38,38,0.1);
|
|
border: 1px solid rgba(220,38,38,0.2);
|
|
padding: 12px;
|
|
border-radius: 6px;
|
|
margin: 8px 0;
|
|
font-size: 13px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="card">
|
|
<h1>Secrets Demo</h1>
|
|
<p>This extension demonstrates the secrets capability.</p>
|
|
<div id="output"></div>
|
|
</div>
|
|
<script src="./main.js" type="module"></script>
|
|
</body>
|
|
</html>
|