Evidence — Code-Driven BI Dashboards Overview Evidence, the open-source BI framework that generates beautiful, interactive dashboards from SQL queries and Markdown. Helps developers build data reports as code, deploy them as static sites, and create self-service analytics without heavy BI tools. Instructions Project Setup Writing Reports Evidence reports are Markdown files with embedded SQL: sql monthly revenue SELECT date trunc('month', created at) AS month, SUM(amount) AS revenue, COUNT( ) AS orders, SUM(amount) / COUNT( ) AS avg order value FROM orders WHERE created at = '2025-01-01' GROUP…