Visivo capability

BI-as-code. Diff it, review it, test it before it ships.

Everything is YAML you version in Git. Run visivo serve for instant hot-reload locally, and gate every change with tests before it deploys.

serve · diff · test
$visivo servelocalhost:8000 · hot-reload on
project.visivo.yml metrics:name: net_revenuename: revenue
visivo test 24 passed
How it works

What you get with CLI & DevOps

  1. Instant hot-reload

    See edits as you type

    `visivo serve` re-renders your dashboards locally the moment you save the YAML.

  2. Reviewed in Git

    Every change is a diff

    Because it's all YAML, every change is a pull request your team can review.

  3. Tested before deploy

    Gate changes in CI

    `visivo test` runs your data and config tests so nothing broken reaches prod.

From the CLI

The BI-as-code loop: serve, diff, test, ship.

Develop locally, review the diff, gate it with tests, then deploy.

terminal
visivo serve # local dev server, hot-reload
git diff project.visivo.yml
visivo test # run data + config tests in CI
visivo deploy -s prod # ship once it's green
Install command copied