Documentation Index
Fetch the complete documentation index at: https://tommy-acf5e428.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Output Formats
Seedling supports multiple output formats for different use cases.SQL Dump
Default format. ProducesINSERT INTO ... statements.
Direct Database Insert
Writes directly to a live database with batched INSERTs.Postgres COPY Protocol
Maximum throughput. Uses pgx COPY protocol for row streaming.CSV
One file per table.JSON Lines
One JSON object per row, streaming per table.Parquet
Tabular columnar output.Format Summary
| Format | Flag | Use Case |
|---|---|---|
| SQL dump | --output seed.sql | CI, staging refresh |
| Direct DB | --db postgres://... | One-shot population |
| COPY | --db ... --copy | Max throughput |
| CSV | --format csv | Analysis, spreadsheets |
| JSON Lines | --format jsonl | Event streams |
| Parquet | --format parquet | Data lake (TSV placeholder) |