...

/

Create Useful Seed Data for Development

Create Useful Seed Data for Development

Learn to create seed data for the development in our example.

We'll cover the following...

Add seed data

Rails’ documentation is unclear on the purpose of seed data, but it’s commonly used to seed development data, and that’s how we view it as well. Because we have set up Factory Bot to create realistic, yet fake data for tests, we can use that for our seed data, too.

There are a few considerations for seed ...