Deploying rails application

I am looking to set my rails application into production mode. Does
anyone have easy instructions on this or good documentation?

Thanks in advance.

Josh

script/server -h

-eric

Hi Josh

Assuming you want to run application in production mode.So do

rake db:migrate RAILS_ENV=production
./script/server -e production

Sijo