Bullet Train is a pre-configured rails template ankane/pretender: Log in as another user in Rails ActiveRecord is the database modeling layer built into Rails. Rails routing

Fixing backtrace for rails engineshacks

If the backtrace is getting killed for an engine is getting killed you can add this into an initializer:

Rail.backtrace_cleaner.tap do |cleaner|
  cleaner.add_silencer do |line|
    (line !~ Rails::BacktraceCleaner::APP_DIRS_PATTERN) &&
      (line !~ /registries-api/)
  end
  cleaner.add_silencer do |l|
    l == "app/controllers/application_controller.rb:72:in `set_time_zone'"
  end
end

Notice that the code from the engine is being included along with lines that match the app pattern