I’ve been using a backup of my production database on my development machine for development purposes for a while now.
I want to switch to use seed data to do this for 2 reasons:
-
Security - There will be more developers working on this application, and they shouldn’t need to have a copy of the production database to do their work
-
Speed - it just takes a while to restore my dev database from production due to size of the backup file
Is there a recommended approach to this problem? I’m going to seed a lot of data to properly setup my development machines.
Should I be using factories? Should I use any of these gems for db bootstrapping Category: Rails DB Bootstrapping - The Ruby Toolbox?