File: lib/generators/instance/templates/instance_radiant_config.rb

Code

Code

   1  Radiant.config do |config|
   2    # this file can be used to set defaults, options and validation rules for local configuration settings.
   3    # core settings are defined in RADIANT_ROOT/config/initializers/radiant_config.rb and by the corresponding 
   4    # file in each radiant extension. You probably don't need to add anything here, but in case you do:
   5 
   6    # config.define 'site.show_footer?', :default => "true"
   7    # config.define 'S3.bucket', :default => "key", :allow_change => false
   8 
   9    # you can also use this file to set config values (by environment, for example):
  10    
  11    # if RAILS_ENV == 'production'
  12    #   config['cache.duration'] = 86400
  13    # else
  14    #   config['cache.duration'] = 0
  15    # end
  16  end