Skip to main content

Dagster & Evidence

The dagster-evidence library offers a component to easily generate dashboards from your Evidence project.

Installation

pip install dagster-evidence

Example

Create an instance of an EvidenceProject component in your component.yaml file and define the asset(s) generated by your Evidence project.

type: dagster_evidence.EvidenceProject

attributes:
project_path: ../jaffle_dashboard
asset:
key: jaffle_dashboard
deps:
- target/main/orders
- target/main/customers
deploy_command: 'echo "Dashboard built at $EVIDENCE_BUILD_PATH"'

About Evidence

Evidence is a lightweight framework for building data apps. It's open source and free to get started.