Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 657 Bytes

README.md

File metadata and controls

39 lines (32 loc) · 657 Bytes

example-rails

For development, run:

bundle install
rails s

Then go to http://localhost:3000


Created with the settings for a minimal Ruby on Rails app:

rails new \
  --database sqlite3 \
  --minimal \
  --skip-keeps \
  --skip-action-mailer \
  --skip-action-mailbox \
  --skip-action-text \
  --skip-active-storage \
  --skip-puma \
  --skip-action-cable \
  --skip-sprockets \
  --skip-spring \
  --skip-listen \
  --skip-javascript \
  --skip-turbolinks \
  --skip-test \
  --skip-system-test \
  --skip-bootsnap \
  --skip-webpack-install \
  rails-example