Skip to content

Instantly share code, notes, and snippets.

@eileencodes
Created January 4, 2012 16:54
Show Gist options
  • Save eileencodes/1560943 to your computer and use it in GitHub Desktop.
Save eileencodes/1560943 to your computer and use it in GitHub Desktop.
Setting up your Gemfile for deployment
group :development do
gem 'sqlite3'
end
group :production do
gem 'mysql'
end
# Use unicorn as the web server
gem 'unicorn'
# Deploy with Capistrano
gem 'capistrano'
gem 'capistrano-unicorn'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment