Managing loaner chromebooks for students and teachers in the HUUSD school district.
at main 33 lines 1.2 kB view raw
1require_relative "boot" 2 3require "rails/all" 4 5# Require the gems listed in Gemfile, including any gems 6# you've limited to :test, :development, or :production. 7Bundler.require(*Rails.groups) 8 9module Ithelper 10 class Application < Rails::Application 11 # Initialize configuration defaults for originally generated Rails version. 12 config.load_defaults 7.1 13 14 # Please, add to the `ignore` list any other `lib` subdirectories that do 15 # not contain `.rb` files, or that should not be reloaded or eager loaded. 16 # Common ones are `templates`, `generators`, or `middleware`, for example. 17 config.autoload_lib(ignore: %w(assets tasks)) 18 19 config.console1984.protected_environments = %i[ production staging ] 20 config.console1984.ask_for_username_if_empty = true 21 22 config.autoload_lib(ignore: %w[assets tasks]) 23 config.assets.paths << Rails.root.join("app/assets/fonts") 24 25 # Configuration for the application, engines, and railties goes here. 26 # 27 # These settings can be overridden in specific environments using the files 28 # in config/environments, which are processed later. 29 # 30 config.time_zone = "Eastern Time (US & Canada)" 31 # config.eager_load_paths << Rails.root.join("extras") 32 end 33end