How do I build a version-controlled dashboard on Redshift without a BI tool?
Define the dashboard in a YAML file, run dac serve, and get a live dashboard in your browser querying Redshift directly. No BI license, no drag-and-drop, and the whole thing lives in git.
Command
dac serveDefined in
YAML
Works with
Redshift + git + CI
What you get
YAML dashboardslive warehouse queriesversion control
How it works in code
# dashboard.yml
name: revenue
connection: redshift
charts:
- title: Daily revenue
query: SELECT day, sum(amount) FROM orders GROUP BY 1Run dac serve and the dashboard is live in your browser, querying Redshift directly.
Related use cases
Dashboards on your warehouse
Build a dashboard as code on Snowflake
How do I build a version-controlled dashboard on Snowflake without a BI tool?
Dashboards on your warehouseServe a live Snowflake dashboard from a YAML file
Can I turn a Snowflake query into a shareable live dashboard with one command?
Dashboards on your warehouseVersion-control Snowflake dashboards in git
How do I keep Snowflake dashboards under version control and code review?
Dashboards that live in git
Open source. Write YAML, run one command, query your warehouse directly.