Files
Dock-Dploy/index.html
T
hhftechnologies 06fc45b87a Add ESLint, compose-builder, YAML utils & tests
Introduce a project-wide ESLint configuration with TypeScript/React rules (including a ban on direct useEffect and inline style object literals) and file-specific overrides. Update index.html to add theme-color meta tags and preload Google fonts. Expand package.json with new scripts (lint, typecheck, validate, extended test commands) and bump/add dev/dependencies for testing, linting, Radix UI, TanStack and tooling. Add many new components and tests (BrandMark, SetupSidebar, compose-builder UI and ServiceForm tabs, VPN tab, CodeMirror runtime, ThemeProvider, template UI and tests, icons), update existing components (CodeEditor, ConversionDialog, Header, Footer, MetaTags, SidebarUI) and hooks/routes. Add YAML generator and related utils, validation schemas, and numerous unit tests and fixtures. Misc: update tsconfig/vite config and styles.
2026-05-11 17:48:46 +05:30

48 lines
2.6 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/favicon.ico" />
<meta name="theme-color" content="#faf9f5" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#181715" media="(prefers-color-scheme: dark)" />
<link rel="apple-touch-icon" href="/logo.png" />
<link rel="manifest" href="/manifest.json" />
<!-- Editorial typography: Instrument Serif (display) + Inter (body) + JetBrains Mono (code) -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- DNS prefetch is a no-op when preconnect is honored, but covers older browsers -->
<link rel="dns-prefetch" href="https://fonts.googleapis.com" />
<link rel="dns-prefetch" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap"
rel="stylesheet"
/>
<!-- Primary Meta Tags -->
<title>Dock-Dploy - Build Docker Compose Files Without the Hassle</title>
<meta name="title" content="Dock-Dploy - Build Docker Compose Files Without the Hassle" />
<meta name="description" content="A powerful web-based tool for building and managing Docker Compose files, configurations, and schedulers. All in one place, completely free." />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="/" />
<meta property="og:title" content="Dock-Dploy - Build Docker Compose Files Without the Hassle" />
<meta property="og:description" content="A powerful web-based tool for building and managing Docker Compose files, configurations, and schedulers. All in one place, completely free." />
<meta property="og:image" content="/logo.svg" />
<meta property="og:site_name" content="Dock-Dploy" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="/" />
<meta name="twitter:title" content="Dock-Dploy - Build Docker Compose Files Without the Hassle" />
<meta name="twitter:description" content="A powerful web-based tool for building and managing Docker Compose files, configurations, and schedulers. All in one place, completely free." />
<meta name="twitter:image" content="/logo.svg" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>