trabajo-afectivo/config/environments/development.rb

48 lines
1.5 KiB
Ruby
Raw Normal View History

2012-04-10 13:31:21 +00:00
Zammad::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 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-09-20 12:54:33 +00:00
# Do not eager load code on boot.
config.eager_load = false
2012-04-10 13:31:21 +00:00
# Show full error reports and disable caching
config.consider_all_requests_local = true
config.action_controller.perform_caching = false
# Don't care if the mailer can't send
config.action_mailer.raise_delivery_errors = false
# Print deprecation notices to the Rails logger
config.active_support.deprecation = :log
2013-09-20 12:54:33 +00:00
# Raise an error on page load if there are pending migrations
config.active_record.migration_error = :page_load
2012-04-10 13:31:21 +00:00
# Do not compress assets
config.assets.compress = false
2013-08-21 19:38:15 +00:00
# Deliver all in one application.(js|css) file
#config.assets.debug = false
2012-04-10 13:31:21 +00:00
# Expands the lines which load the assets
config.assets.debug = true
2013-08-21 19:38:15 +00:00
# Automatically inject JavaScript needed for LiveReload
2015-04-27 20:55:17 +00:00
config.middleware.use(
Rack::LiveReload,
min_delay: 500, # default 1000
max_delay: 10_000, # default 60_000
live_reload_port: 35_738,
source: :vendored
)
# define cache store
config.cache_store = :file_store, 'tmp/cache_file_store_development'
2015-05-04 18:58:28 +00:00
# format log
config.log_formatter = Logger::Formatter.new
end