fed8b2eed7
Backend release / release (push) Waiting to run
Bandit Security Scan / bandit_scan (push) Waiting to run
Build and push multi-arch DocsGPT Docker image / build (linux/amd64, ubuntu-latest, amd64) (push) Waiting to run
Build and push multi-arch DocsGPT Docker image / build (linux/arm64, ubuntu-24.04-arm, arm64) (push) Waiting to run
Build and push multi-arch DocsGPT Docker image / manifest (push) Blocked by required conditions
Build and push DocsGPT FE Docker image for development / build (linux/amd64, ubuntu-latest, amd64) (push) Waiting to run
Build and push DocsGPT FE Docker image for development / build (linux/arm64, ubuntu-24.04-arm, arm64) (push) Waiting to run
Build and push DocsGPT FE Docker image for development / manifest (push) Blocked by required conditions
Python linting / ruff (push) Waiting to run
Run python tests with pytest / Run tests and count coverage (3.12) (push) Waiting to run
React Widget Build / build (push) Waiting to run
35 lines
1.2 KiB
HTML
35 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0,viewport-fit=cover" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="theme-color" content="#fbfbfb" media="(prefers-color-scheme: light)" />
|
|
<meta name="theme-color" content="#161616" media="(prefers-color-scheme: dark)" />
|
|
<script>
|
|
(function () {
|
|
try {
|
|
var stored = localStorage.getItem('selectedTheme');
|
|
var isDark = stored === 'Dark' ||
|
|
(stored == null && window.matchMedia &&
|
|
window.matchMedia('(prefers-color-scheme: dark)').matches);
|
|
if (isDark) document.documentElement.classList.add('dark');
|
|
var color = isDark ? '#161616' : '#fbfbfb';
|
|
document.head.querySelectorAll('meta[name="theme-color"]').forEach(function (m) {
|
|
m.removeAttribute('media');
|
|
m.setAttribute('content', color);
|
|
});
|
|
} catch (e) { }
|
|
})();
|
|
</script>
|
|
<title>DocsGPT</title>
|
|
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root" class="h-screen"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
|
|
</html> |