Can I turn a Snowflake query into a shareable live dashboard with one command?
Point dac at your Snowflake connection, describe the charts in YAML, and dac serve gives your team a live dashboard that queries Snowflake on every load. Ships in the same repo as your pipelines.
Command
dac serveDefined in
YAML
Works with
Snowflake + Bruin CLI
What you get
One-command servelive queriesno cache to manage
How it works in code
# dashboard.yml
name: revenue
connection: snowflake
charts:
- title: Daily revenue
query: SELECT day, sum(amount) FROM orders GROUP BY 1Run dac serve and your team gets a live dashboard served straight from Snowflake.
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 warehouseVersion-control Snowflake dashboards in git
How do I keep Snowflake dashboards under version control and code review?
Dashboards on your warehouseBuild a dashboard as code on BigQuery
How do I build a version-controlled dashboard on BigQuery without a BI tool?
Dashboards that live in git
Open source. Write YAML, run one command, query your warehouse directly.