Seedbox
A repeatable fixture generator. This page is a compact project note rather than a product pitch.
Tools
PythonJSONdeterministic seeds
Build Notes
Define useful fake data
Focused on believable edge cases rather than merely generating large volumes of records.
Make runs reproducible
Used deterministic seeds so a failing interface state can be rebuilt exactly.
Keep outputs inspectable
Generated plain JSON that can be opened, diffed, and edited without special tooling.
Test the generator too
Checked required fields, relationships, and uniqueness constraints before using the fixtures elsewhere.
What stayed
The useful part was not a framework trick. It was keeping the scope small enough to test the whole interface and change direction without a migration project.