DocsCLI

seedkit preview

Generate sample rows and print them to your terminal — no DB touched, no project provisioned.


Iterate on your schema or prompt without burning ephemeral DBs. preview runs the same generator as seedkit new but stops before insert/provision; sample rows print to your terminal.

Synopsis

seedkit preview [options]

Examples

seedkit preview --schema schema.sql --rows 5
── users ───────────────────────────────────
 Priya Mehta    priya@aventar.co    pro
 Javier Soto    j.soto@kite-labs.io enterprise
 Naomi Fields   naomi@greenpath.dev free

── orgs ────────────────────────────────────
 Aventar    founded 2021  · 14 seats
 Kite Labs  founded 2019  · 42 seats

Options

FlagTypeDefaultDescription
--schema <path>pathSame as seedkit new.
--prompt <text>stringSame as seedkit new.
--rows <n>number5Sample rows per table.
--seed <name>stringrandomUse a seed name for deterministic samples.
--scope <domain>enumnoneSame as seedkit new.
--jsonflagoffPrint the sample as JSON.

preview does not require an account or SEEDKIT_TOKEN for local-only schemas.

See also

  • seedkit new — promote your previewed config to a live DB.
  • Foreign keyspreview includes the FK satisfaction report.