mirror of
https://github.com/kharonsec/br-acc
synced 2026-04-25 17:15:02 +02:00
- git init, AGPL-3.0 license, .gitignore, .env.example, Makefile - CLAUDE.md with neutrality rules, build commands, code style - Custom agents: security-reviewer, code-reviewer, test-writer - API: FastAPI skeleton with health check, meta endpoints, Neo4j driver - ETL: Pipeline base class, CLI runner skeleton, splink + basedosdados deps - Frontend: Vite + React 19 + React Router 7 + i18n (PT-BR/EN) + Zustand - Infra: docker-compose.yml (Neo4j + API + Frontend), schema init.cypher - All feedback loops pass: ruff, mypy, pytest, eslint, tsc, vitest Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
21 lines
494 B
HTML
21 lines
494 B
HTML
<!doctype html>
|
|
<html lang="pt-BR">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>ICARUS</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
background: #0d100e;
|
|
color: #e0e0e0;
|
|
font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|