Skip to content

Quick Start

Get up and running with Honey Duck in under 5 minutes.

Prerequisites

  • Python 3.11+
  • uv package manager

Installation

# Clone the repository
git clone https://github.com/CogappLabs/honey-duck.git
cd honey-duck

# Install dependencies
uv sync

# Optional: Enable persistent run history
cp .env.example .env

Run the Pipeline

uv run dg dev

Open http://localhost:3000 and click "Materialize all".

Option 2: CLI

uv run dg launch --job polars_pipeline

Verify Output

Check that the pipeline created output files:

ls data/output/
# artworks_output_polars.json
# sales_output_polars.json

Next Steps