It goes a little something like this:
rails new APP_NAME --database=postgresql --skip-test-unit
suspenders APP_NAME --skip-git true --skip-keeps true --force
Then comes a whole bunch of customizing for my likes:
- unicorn -> puma
- Remove staging env
- background workers
- remove
worker
fromProcfile
until we add Sidekiq - remove
delayed_job
from Gemfile
bin/setup
- port 5000
- fix db setup
- add foreman
- add mailcatcher
- remove gems:
- airbrake
- flutie
- formulaic
- launchy
- newrelic_rpm
- shoulda-matchers
- timecop
- remove
capybara-webkit
- .travis.yml
- rails_helper.rb
- .travis.yml
- Postgres 9.4
- all branches
- send email notifications
app/controllers/application_controller.rb
add_flash_types :error, :success
- remove
config/initializers/json_encoding.rb
- add heroku support
- SMTP settings
- gem 'rails_12factor', group: :production
- gem 'rails_stdout_logging', group: :development
- bin/deploy
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™."