Skip to content

Instantly share code, notes, and snippets.

@stevenharman
Last active February 28, 2018 12:46
Show Gist options
  • Save stevenharman/457cb4d522d315b66572 to your computer and use it in GitHub Desktop.
Save stevenharman/457cb4d522d315b66572 to your computer and use it in GitHub Desktop.
Setting up a new Rails app, with thoughtbot/suspenders, and my own preferences.

A new Rails app

It goes a little something like this:

  1. rails new APP_NAME --database=postgresql --skip-test-unit
  2. suspenders APP_NAME --skip-git true --skip-keeps true --force

Then comes a whole bunch of customizing for my likes:

  1. unicorn -> puma
  2. Remove staging env
  3. background workers
  • remove worker from Procfile until we add Sidekiq
  • remove delayed_job from Gemfile
  1. bin/setup
  • port 5000
  • fix db setup
  • add foreman
  1. add mailcatcher
  2. remove gems:
  • airbrake
  • flutie
  • formulaic
  • launchy
  • newrelic_rpm
  • shoulda-matchers
  • timecop
  1. remove capybara-webkit
  • .travis.yml
  • rails_helper.rb
  1. .travis.yml
  • Postgres 9.4
  • all branches
  • send email notifications
  1. app/controllers/application_controller.rb
  • add_flash_types :error, :success
  1. remove config/initializers/json_encoding.rb
  2. add heroku support
  • SMTP settings
  • gem 'rails_12factor', group: :production
  • gem 'rails_stdout_logging', group: :development
  • bin/deploy
@stevenharman
Copy link
Author

This list is not complete, but does represent a large portion of what I do to get a new Rails app set up, "My Way™."

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment