Postgres seed data, for your framework

Every framework has its own seeding ceremony — seed scripts, factories, fixtures. The schema underneath is the same. Generate FK-intact, distribution-true Postgres data for the framework you already use, without maintaining generator config.

How it works, once

Every framework guide follows the same loop: migrate or push your schema, point Weavori at the database, generate. Foreign keys resolve in dependency order, distributions come from pg_stats, and there is nothing to maintain when the schema changes. The Postgres test data guide explains the approach; the framework pages show it in your stack.