Skip to content

Instantly share code, notes, and snippets.

@fearoffish
Created January 18, 2011 13:55
Show Gist options
  • Save fearoffish/784456 to your computer and use it in GitHub Desktop.
Save fearoffish/784456 to your computer and use it in GitHub Desktop.
task :env_1 do
role :web, '127.0.0.1'
role :app, '127.0.0.1'
role :db, '127.0.0.1', :primary => true
set :rails_env, 'production'
end
task :env_2 do
role :web, '127.0.0.1'
role :app, '127.0.0.1'
role :db, '127.0.0.1', :primary => true
set :rails_env, 'staging'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment