explainer
explainer

Reputation: 1335

Can I somehow execute my db/seeds.rb file from my rails app?

I am building a demo, and I want to make it very easy for a non-technical person to set up and run the demo. I have built a seeds.rb file with lots of demo data in it. I want to be able to reset the rails app to a known state by providing an administrator-level action via a page link. I don't want to provide these non-tech demonstrators with a command line and rake, because they might shoot themselves in the foot.

I have looked into using load 'db/seeds.rb' within a method, but that doesn't quite do what I want. I know I am missing something, but what?

Upvotes: 47

Views: 53162

Answers (2)

facundofarias
facundofarias

Reputation: 3043

I prefer the classic method:

bundle exec rails db:seed

But I guess, that you can also call Rails.application.load_seed as mentioned.

Upvotes: 5

idlefingers
idlefingers

Reputation: 32067

You can call Rails.application.load_seed. That's all rake db:seed does.

Upvotes: 99

Related Questions