123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- RailsWebsiteTemplate::Application.configure do
-
-
- config.cache_classes = true
-
-
-
-
- config.eager_load = true
-
- config.consider_all_requests_local = false
- config.action_controller.perform_caching = true
-
-
-
-
-
- config.serve_static_assets = false
-
- config.assets.js_compressor = :uglifier
-
-
- config.assets.compile = false
-
- config.assets.digest = true
-
- config.assets.version = '1.0'
-
-
-
-
-
-
- config.log_level = :info
-
-
-
-
-
-
-
-
-
-
-
-
-
- config.action_mailer.raise_delivery_errors = false
-
-
- config.i18n.fallbacks = true
-
- config.active_support.deprecation = :notify
-
-
-
-
-
- config.log_formatter = ::Logger::Formatter.new
-
- config.action_mailer.default_url_options = ENV["HEROKU_APP_URL"]
-
- config.action_mailer.delivery_method = :smtp
- config.action_mailer.perform_deliveries = true
- config.action_mailer.raise_delivery_errors = false
- config.action_mailer.default :charset => "utf-8"
-
- config.action_mailer.smtp_settings = {
- :address => "smtp.mandrillapp.com",
- :port => 587,
- :enable_starttls_auto => true,
- :user_name => ENV["MANDRILL_USERNAME"],
- :password => ENV["MANDRILL_KEY"],
- :authentication => 'login',
- :domain => ENV["DOMAIN_NAME"]
- }
-
- end
|