Skip to content

v0.0.14

Choose a tag to compare

@github-actions github-actions released this 16 Jul 14:13
· 76 commits to main since this release

Diagrid Dev Dashboard

A local dashboard for Dapr developers that offers a live view of everything Dapr running on your machine, plus guided builders for authoring Dapr component files and resiliency policies. v0.0.14 adds two developer-facing features: a context-sensitive Dapr CLI command drawer and a one-click Share dialog.

What's new

⌨️ Context-sensitive Dapr CLI drawer

  • A new collapsible Dapr CLI drawer slides in from the right edge and surfaces the Dapr CLI commands relevant to the page you're on — dapr list on the apps overview, dapr stop --app-id <id> on an app's detail page, dapr workflow list / history / suspend / resume / terminate / purge on the workflow views, dapr scheduler commands on actors, and dapr publish on subscriptions.
  • App IDs and workflow instance IDs from the current view are filled into the commands for you, and every command has its own copy button. Commands are self-hosted only (no Kubernetes -k variants), and the drawer's content lives in editable files so it's easy to extend.

📤 Share the dashboard

  • A Share button in the top navigation opens a dialog to send the dashboard to a colleague — copy the ready-made message, or post it to Email, X, LinkedIn, or BlueSky with the text prefilled.

Install & run

One-liner (macOS / Linux):

curl -sSL https://raw.githubusercontent.com/diagridio/dev-dashboard/main/scripts/install.sh | sh

Windows (PowerShell):

iwr -useb https://raw.githubusercontent.com/diagridio/dev-dashboard/main/scripts/install.ps1 | iex

Container:

docker pull ghcr.io/diagridio/dev-dashboard:0.0.14

Run:

diagrid-dev-dashboard          # serves http://localhost:9090 and opens your browser

Single self-contained binary — the React frontend is embedded via go:embed, so there are no runtime dependencies. Prebuilt archives for macOS and Linux (amd64 + arm64) and Windows (amd64) are attached below, and the multi-arch container image is on GHCR.