Files
br-acc/frontend/index.html
bruno cesar 127a3e6754 Phase 0: Foundation — project skeleton with all three packages
- 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>
2026-02-22 03:16:21 -03:00

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>