2016-02-12 23:52:43 +08:00
|
|
|
Rails.application.configure do
|
2018-11-22 05:05:33 +08:00
|
|
|
# Verifies that versions and hashed value of the package contents in the project's package.json
|
|
|
|
config.webpacker.check_yarn_integrity = true
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
# 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.
|
2017-11-20 16:41:14 +08:00
|
|
|
if ENV['CUCUMBER'] == 'cucumber'
|
|
|
|
config.cache_classes = true
|
|
|
|
else
|
|
|
|
config.cache_classes = ENV['WORKER'] ? true : false
|
|
|
|
end
|
2016-02-12 23:52:43 +08:00
|
|
|
# Do not eager load code on boot.
|
2017-08-23 23:10:45 +08:00
|
|
|
config.eager_load = ENV['WORKER'] ? true : false
|
2016-02-12 23:52:43 +08:00
|
|
|
|
|
|
|
# Show full error reports and disable caching.
|
|
|
|
config.consider_all_requests_local = true
|
|
|
|
config.action_controller.perform_caching = false
|
|
|
|
|
2017-05-11 00:15:08 +08:00
|
|
|
Rails.application.routes.default_url_options = {
|
|
|
|
host: Rails.application.secrets.mail_server_url
|
|
|
|
}
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
config.action_mailer.default_options = {
|
|
|
|
from: Rails.application.secrets.mailer_from,
|
|
|
|
reply_to: Rails.application.secrets.mailer_reply_to
|
|
|
|
}
|
2017-11-09 00:31:21 +08:00
|
|
|
|
2017-11-08 23:23:52 +08:00
|
|
|
if ENV['CUCUMBER'] == 'cucumber'
|
2019-09-25 19:16:16 +08:00
|
|
|
# Special mailer config for Cucumber test environment
|
2017-11-08 23:23:52 +08:00
|
|
|
config.action_mailer.delivery_method = :test
|
2017-11-09 00:31:21 +08:00
|
|
|
config.action_mailer.default_url_options = {
|
|
|
|
host: Rails.application.secrets.mail_server_url,
|
|
|
|
port: 3001
|
|
|
|
}
|
|
|
|
config.action_mailer.perform_deliveries = true
|
2019-09-25 17:58:52 +08:00
|
|
|
config.action_mailer.raise_delivery_errors = true
|
2017-11-08 23:23:52 +08:00
|
|
|
else
|
|
|
|
config.action_mailer.delivery_method = :smtp
|
2017-11-09 00:31:21 +08:00
|
|
|
config.action_mailer.default_url_options = {
|
|
|
|
host: Rails.application.secrets.mail_server_url
|
|
|
|
}
|
2019-09-25 17:58:52 +08:00
|
|
|
|
|
|
|
# Do not actually deliver emails, and ignore errors
|
2017-11-09 00:31:21 +08:00
|
|
|
config.action_mailer.perform_deliveries = false
|
2019-09-25 17:58:52 +08:00
|
|
|
config.action_mailer.raise_delivery_errors = false
|
2017-11-08 23:23:52 +08:00
|
|
|
end
|
2017-11-09 00:31:21 +08:00
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
config.action_mailer.smtp_settings = {
|
|
|
|
address: Rails.application.secrets.mailer_address,
|
|
|
|
port: Rails.application.secrets.mailer_port,
|
|
|
|
domain: Rails.application.secrets.mailer_domain,
|
2018-02-15 00:02:28 +08:00
|
|
|
authentication: Rails.application.secrets.mailer_authentication,
|
2016-02-12 23:52:43 +08:00
|
|
|
enable_starttls_auto: true,
|
|
|
|
user_name: Rails.application.secrets.mailer_user_name,
|
|
|
|
password: Rails.application.secrets.mailer_password
|
|
|
|
}
|
2017-11-08 18:59:01 +08:00
|
|
|
|
2019-07-03 15:48:20 +08:00
|
|
|
config.action_mailer.perform_caching = false
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
# Print deprecation notices to the Rails logger.
|
|
|
|
config.active_support.deprecation = :log
|
|
|
|
|
2019-02-14 19:51:30 +08:00
|
|
|
config.action_mailer.preview_path = "#{Rails.root}/test/mailers/previews"
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
# Raise an error on page load if there are pending migrations.
|
|
|
|
config.active_record.migration_error = :page_load
|
|
|
|
|
2019-07-03 15:48:20 +08:00
|
|
|
# Highlight code that triggered database queries in logs.
|
|
|
|
config.active_record.verbose_query_logs = true
|
|
|
|
|
2016-02-12 23:52:43 +08: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 = true
|
|
|
|
|
|
|
|
# Asset digests allow you to set far-future HTTP expiration dates on all assets,
|
|
|
|
# yet still be able to expire them through the digest params.
|
|
|
|
config.assets.digest = true
|
|
|
|
|
|
|
|
# Adds additional error checking when serving assets at runtime.
|
|
|
|
# Checks for improperly declared sprockets dependencies.
|
|
|
|
# Raises helpful error messages.
|
|
|
|
config.assets.raise_runtime_errors = true
|
|
|
|
|
2016-07-21 19:11:15 +08:00
|
|
|
# Only log info and higher on development
|
2018-06-01 19:49:02 +08:00
|
|
|
config.log_level = :debug
|
2016-07-21 19:11:15 +08:00
|
|
|
|
|
|
|
# Only allow Better Errors to work on trusted ip, use ifconfig to see which
|
|
|
|
# one you use and put it into application.yml!
|
|
|
|
BetterErrors::Middleware.allow_ip! ENV['TRUSTED_IP'] if ENV['TRUSTED_IP']
|
|
|
|
|
2019-07-03 15:48:20 +08:00
|
|
|
# Suppress logger output for asset requests.
|
|
|
|
config.assets.quiet = false
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
# Raises error for missing translations
|
2016-07-21 19:11:15 +08:00
|
|
|
config.action_view.raise_on_missing_translations = true
|
2016-02-12 23:52:43 +08:00
|
|
|
|
2017-02-27 16:40:01 +08:00
|
|
|
# Enable/disable Deface
|
2017-02-27 19:54:51 +08:00
|
|
|
config.deface.enabled = ENV['DEFACE_ENABLED'] != 'false'
|
2017-02-23 17:39:34 +08:00
|
|
|
|
2016-11-22 21:57:41 +08:00
|
|
|
# Enable reCAPTCHA
|
2016-11-22 22:05:25 +08:00
|
|
|
config.x.enable_recaptcha = ENV['ENABLE_RECAPTCHA'] == 'true'
|
2016-11-23 16:49:52 +08:00
|
|
|
|
|
|
|
# Enable email confirmations
|
|
|
|
config.x.enable_email_confirmations =
|
|
|
|
ENV['ENABLE_EMAIL_CONFIRMATIONS'] == 'true'
|
2017-01-30 22:04:02 +08:00
|
|
|
|
|
|
|
# Enable user registrations
|
2017-01-31 18:10:46 +08:00
|
|
|
config.x.enable_user_registration =
|
|
|
|
ENV['ENABLE_USER_REGISTRATION'] == 'false' ? false : true
|
2017-06-23 21:19:08 +08:00
|
|
|
|
2018-02-26 18:05:05 +08:00
|
|
|
# Enable sign in with LinkedIn account
|
|
|
|
config.x.linkedin_signin_enabled = ENV['LINKEDIN_SIGNIN_ENABLED'] == 'true'
|
|
|
|
|
2017-06-23 21:19:08 +08:00
|
|
|
# Use an evented file watcher to asynchronously detect changes in source code,
|
|
|
|
# routes, locales, etc. This feature depends on the listen gem.
|
2019-07-03 15:48:20 +08:00
|
|
|
config.file_watcher = ActiveSupport::EventedFileUpdateChecker
|
2017-06-23 21:19:08 +08:00
|
|
|
|
|
|
|
# Enable/disable caching. By default caching is disabled.
|
|
|
|
if Rails.root.join('tmp/caching-dev.txt').exist?
|
|
|
|
config.action_controller.perform_caching = true
|
|
|
|
|
2019-04-25 01:17:31 +08:00
|
|
|
config.cache_store = :memory_store, { size: (ENV['RAILS_MEM_CACHE_SIZE_MB'] || 32).to_i.megabytes }
|
2017-06-23 21:19:08 +08:00
|
|
|
config.public_file_server.headers = {
|
|
|
|
'Cache-Control' => "public, max-age=#{2.days.seconds.to_i}"
|
|
|
|
}
|
|
|
|
else
|
|
|
|
config.action_controller.perform_caching = false
|
|
|
|
|
|
|
|
config.cache_store = :null_store
|
|
|
|
end
|
2017-10-25 21:29:04 +08:00
|
|
|
# Enable new team on sign up
|
|
|
|
new_team_on_signup = ENV['NEW_TEAM_ON_SIGNUP'] || 'true'
|
|
|
|
if new_team_on_signup == 'true'
|
|
|
|
config.x.new_team_on_signup = true
|
|
|
|
else
|
|
|
|
config.x.new_team_on_signup = false
|
|
|
|
end
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|