feat: initial scaffold of osint_db (DuckDB source-of-truth service)

This commit is contained in:
agent
2026-06-13 00:02:41 +02:00
commit 2716edd5a0
15 changed files with 2422 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
[project]
name = "osint-db"
version = "0.1.0"
description = "Service FastAPI local dueño único de la base DuckDB osint.duckdb: fuente de verdad estructurada del ecosistema OSINT (vault Obsidian + Xandikos CardDAV/CalDAV)."
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.110",
"uvicorn>=0.29",
"pyyaml>=6.0",
"duckdb>=1.0",
]
[dependency-groups]
dev = [
"pytest>=8.0",
"httpx>=0.27",
]
[tool.pytest.ini_options]
testpaths = ["tests"]