show/hide this revision's text 2 Fixed code formatting and error in code (:rails_env task -> :environment)

Try a rake task. For example:

  1. Create the file /lib/tasks/bootstrap.rake
  2. In the file, add a task to create your default user:

    namespace :bootstrap do
      desc "Add the default user"
      task :default_user => :rails_env environment do
        User.create( :name => 'default', :password => 'password' )
      end

      desc "Create the default comment"
      task :default_comment => :rails_env environment do
        Comment.create( :title => 'Title', :body => 'First post!' )
      end

      desc "Run all bootstrapping tasks"
      task :all => [:default_user, :default_comment]
    end
  1. Then, when you're setting up your app for the first time, you can do rake db:migrate OR rake db:schema:load, and then do rake bootstrap:all.
show/hide this revision's text 1

Try a rake task. For example:

  1. Create the file /lib/tasks/bootstrap.rake
  2. In the file, add a task to create your default user:

    namespace :bootstrap do desc "Add the default user" task :default_user => :rails_env do User.create( :name => 'default', :password => 'password' ) end

    desc "Create the default comment" task :default_comment => :rails_env do Comment.create( :title => 'Title', :body => 'First post!' ) end

    desc "Run all bootstrapping tasks" task :all => [:default_user, :default_comment] end

  3. Then, when you're setting up your app for the first time, you can do rake db:migrate OR rake db:schema:load, and then do rake bootstrap:all.