chore: release v1.0.0 — каркас FastAPI, ingress Grafana, интеграции, документация

Made-with: Cursor
This commit is contained in:
Alexandr
2026-04-03 08:30:56 +03:00
commit 4da9b13a86
34 changed files with 1049 additions and 0 deletions

12
web/index.html Normal file
View File

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>onGuard24</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>

22
web/package.json Normal file
View File

@ -0,0 +1,22 @@
{
"name": "onguard24-web",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"typescript": "~5.6.2",
"vite": "^5.4.10"
}
}

32
web/src/App.tsx Normal file
View File

@ -0,0 +1,32 @@
import { useEffect, useState } from "react";
type Status = Record<string, unknown>;
export default function App() {
const [status, setStatus] = useState<Status | null>(null);
const [err, setErr] = useState<string | null>(null);
useEffect(() => {
fetch("/api/v1/status")
.then((r) => (r.ok ? r.json() : Promise.reject(new Error(String(r.status)))))
.then(setStatus)
.catch((e) => setErr(String(e)));
}, []);
return (
<div style={{ fontFamily: "system-ui", padding: "2rem", maxWidth: 640 }}>
<h1>onGuard24</h1>
<p>Модульный монолит: API на FastAPI, модули заглушки.</p>
<h2>Статус</h2>
{err && <p style={{ color: "crimson" }}>Ошибка: {err}</p>}
{status && (
<pre style={{ background: "#f4f4f5", padding: "1rem", borderRadius: 8 }}>
{JSON.stringify(status, null, 2)}
</pre>
)}
<p style={{ marginTop: "2rem", color: "#666" }}>
Бэкенд: <code>uvicorn onguard24.main:app --port 8080</code>
</p>
</div>
);
}

5
web/src/index.css Normal file
View File

@ -0,0 +1,5 @@
body {
margin: 0;
background: #fafafa;
color: #18181b;
}

10
web/src/main.tsx Normal file
View File

@ -0,0 +1,10 @@
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
import "./index.css";
ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);

1
web/src/vite-env.d.ts vendored Normal file
View File

@ -0,0 +1 @@
/// <reference types="vite/client" />

20
web/tsconfig.json Normal file
View File

@ -0,0 +1,20 @@
{
"compilerOptions": {
"target": "ES2022",
"useDefineForClassFields": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-js",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src"]
}

10
web/tsconfig.node.json Normal file
View File

@ -0,0 +1,10 @@
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2023"],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler"
},
"include": ["vite.config.ts"]
}

13
web/vite.config.ts Normal file
View File

@ -0,0 +1,13 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
proxy: {
"/api": { target: "http://127.0.0.1:8080", changeOrigin: true },
"/health": { target: "http://127.0.0.1:8080", changeOrigin: true },
},
},
});