Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 748 Bytes

ror.adoc

File metadata and controls

25 lines (20 loc) · 748 Bytes
rails new ror --skip-bundle  --skip-docker --skip-action-mailer --skip-action-mailbox --skip-action-text --skip-active-storage \
              --skip-action-cable --skip-bootsnap --skip-dev-gems --skip-coffee --skip-sprockets --skip-spring --skip-test
  • create tebako environment

  • make tebako environment default for the project (config/application.rb) ensure taht database is created outside of the tebako memfs

tebako:
  <<: *default
  database: ~/rails/storage/tebako.sqlite3
  • set config.paths["log"] in config/application.rb to appropriate host file

config.paths["log"] = "#{ENV.fetch("HOME")}/rails/log/#{Rails.env}.log"