63 lines
2.0 KiB
Ruby
Raw Normal View History

2014-03-23 13:31:08 -06:00
#require 'perftools'
2014-07-05 14:49:50 -06:00
#OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE
2014-03-09 14:43:33 -06:00
BikeBike::Application.configure do
# Settings specified here will take precedence over those in config/application.rb.
2013-04-19 19:14:51 +02:00
2014-03-09 14:43:33 -06:00
# In the development environment your application's code is reloaded on
# every request. 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
2013-04-19 19:14:51 +02:00
2014-03-09 14:43:33 -06:00
# Do not eager load code on boot.
config.eager_load = false
2013-04-19 19:14:51 +02:00
2014-03-09 14:43:33 -06:00
# Show full error reports and disable caching.
config.consider_all_requests_local = true
config.action_controller.perform_caching = false
2013-04-19 19:14:51 +02:00
2014-03-09 14:43:33 -06:00
# Don't care if the mailer can't send.
config.action_mailer.raise_delivery_errors = false
2013-04-19 19:14:51 +02:00
2014-03-09 14:43:33 -06:00
# Print deprecation notices to the Rails logger.
config.active_support.deprecation = :log
2013-04-19 19:14:51 +02:00
2014-03-09 14:43:33 -06:00
# Raise an error on page load if there are pending migrations
config.active_record.migration_error = :page_load
2013-04-19 19:14:51 +02:00
2014-03-09 14:43:33 -06:00
# Debug mode disables concatenation and preprocessing of assets.
# This option may cause significant delays in view rendering with a large
# number of complex assets.
config.assets.debug = false
2016-05-30 18:24:07 -07:00
config.assets.digest = false
config.assets.compile = true
2014-03-09 14:43:33 -06:00
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:address => 'mail.bikebike.org',
2015-04-14 19:41:46 -07:00
:domain => 'preview.bikebike.org',
:port => 587,
2014-03-09 14:43:33 -06:00
:authentication => :plain,
:enable_starttls_auto => true,
:openssl_verify_mode => 'none',
2015-04-14 19:41:46 -07:00
:user_name => 'info@preview.bikebike.org',
:password => 'test'
2014-03-09 14:43:33 -06:00
}
config.action_mailer.raise_delivery_errors = true
config.action_mailer.perform_deliveries = true
2014-03-23 13:31:08 -06:00
2015-03-17 20:29:17 -07:00
config.serve_static_files = true
2016-05-30 18:24:07 -07:00
# config.action_controller.perform_caching = true
2016-06-28 17:27:16 -07:00
I18n.config.language_detection_method = I18n::Config::DETECT_LANGUAGE_FROM_URL_PARAM
# to be appraised of mailing errors
config.action_mailer.raise_delivery_errors = true
# to deliver to the browser instead of email
config.action_mailer.delivery_method = :letter_opener
Paypal.sandbox!
2013-04-19 19:14:51 +02:00
end