doors { name: "Room 8 Door" type: STANDARD receivers: "Components/Doors/entry_10" panels { room: "Main Area" name: "STEM" } panels { room: "Main Area" name: "PETAL" } panels { room: "Main Area" name: "SOIL" } panels { room: "Main Area" name: "PLANTS" } location_room: "Main Area" } doors { name: "Mastery Door" type: EVENT panels { room: "Main Area" name: "ASP" } panels { room: "Main Area" name: "HORN" } panels { room: "Main Area" name: "NET" } panels { room: "Main Area" name: "WAS" } panels { room: "Main Area" name: "HONE" } panels { room: "Main Area" name: "MOO" } panels { room: "Main Area" name: "QUIT" } panels { room: "Main Area" name: "EYE" } panels { room: "Main Area" name: "YELL" } panels { room: "Main Area" name: "AT" } panels { room: "Main Area" name: "LOW (1)" } panels { room: "Main Area" name: "JACK" } panels { room: "Main Area" name: "LOW (2)" } panels { room: "Main Area" name: "OWE" } panels { room: "Main Area" name: "DEN" } panels { room: "Main Area" name: "AD" } panels { room: "Main Area" name: "SITE" } panels { room: "Main Area" name: "ATE" } panels { room: "Main Area" name: "CURE" } panels { room: "Main Area" name: "PAR" } panels { room: "Main Area" name: "EEL" } panels { room: "Main Area" name: "SIR" } panels { room: "Main Area" name: "PER" } panels { room: "Main Area" name: "BEE" } panels { room: "Main Area" name: "STEM" } panels { room: "Main Area" name: "PETAL" } panels { room: "Main Area" name: "SOIL" } panels { room: "Main Area" name: "PLANTS" } panels { room: "Room 8" name: "BUMBLE" } panels { room: "Room 8" name: "CARPENTER" } panels { room: "Room 8" name: "CLOVER" } panels { room: "Room 8" name: "WILDFLOWER" } panels { room: "Main Area" name: "COWARDLY" } panels { room: "Main Area" name: "COAT" } panels { room: "Main Area" name: "FLAXEN" } panels { room: "Main Area" name: "CASE" } panels { room: "Main Area" name: "LEGS" } panels { room: "Main Area" name: "EYES" } panels { room: "Main Area" name: "WINGS" } panels { room: "Main Area" name: "ANTENNA" } panels { room: "Main Area" name: "COFFEE" } panels { room: "Main Area" name: "BEEF" } } lass='right' method='get' action='/thoughts/log/config/environments/development.rb'>
path: root/config/environments/development.rb
blob: e683ebb246176359faead64e0ed237847e178605 (plain) (tree)
1
2
3
4
5
6
7

                                              


                                                                                     

                                                                               








                                                                              


                             
                                                           

                                                  
                                                   
                                                                 


                                         
                                                         






                                                    


                                                                                       
                                        
                                                                       






                                                    





                                                               


                                                                

                                                           



                                              

                                                    
 

                                                                   
 

                                                                       
   
require "active_support/core_ext/integer/time"

Rails.application.configure do
  # Settings specified here will take precedence over those in config/application.rb.

  # In the development environment your application's code is reloaded any time
  # it changes. This slows down response time but is perfect for development
  # since you don't have to restart the web server when you make code changes.
  config.cache_classes = false

  # Do not eager load code on boot.
  config.eager_load = false

  # Show full error reports.
  config.consider_all_requests_local = true

  # Enable server timing
  config.server_timing = true

  # Enable/disable caching. By default caching is disabled.
  # Run rails dev:cache to toggle caching.
  if Rails.root.join("tmp/caching-dev.txt").exist?
    config.action_controller.perform_caching = true
    config.action_controller.enable_fragment_cache_logging = true

    config.cache_store = :memory_store
    config.public_file_server.headers = {
      "Cache-Control" => "public, max-age=#{2.days.to_i}"
    }
  else
    config.action_controller.perform_caching = false

    config.cache_store = :null_store
  end

  # Store uploaded files on the local file system (see config/storage.yml for options).
  config.active_storage.service = :local

  # Don't care if the mailer can't send.
  config.action_mailer.default_url_options = { host: 'localhost:3000' }
  config.action_mailer.raise_delivery_errors = false

  config.action_mailer.perform_caching = false

  # Print deprecation notices to the Rails logger.
  config.active_support.deprecation = :log

  # Raise exceptions for disallowed deprecations.
  config.active_support.disallowed_deprecation = :raise

  # Tell Active Support which deprecation messages to disallow.
  config.active_support.disallowed_deprecation_warnings = []

  # Raise an error on page load if there are pending migrations.
  config.active_record.migration_error = :page_load

  # Highlight code that triggered database queries in logs.
  config.active_record.verbose_query_logs = true

  # Suppress logger output for asset requests.
  config.assets.quiet = true

  # Raises error for missing translations.
  # config.i18n.raise_on_missing_translations = true

  # Annotate rendered view with file names.
  # config.action_view.annotate_rendered_view_with_filenames = true

  # Uncomment if you wish to allow Action Cable access from any origin.
  # config.action_cable.disable_request_forgery_protection = true
end