|
39 | 39 | config.log_tags = [:request_id] |
40 | 40 | config.logger = ActiveSupport::TaggedLogging.logger(STDOUT) |
41 | 41 |
|
42 | | - # Change to "debug" to log everything (including potentially personally-identifiable information!) |
| 42 | + # Change to "debug" to log everything (including potentially personally-identifiable information!). |
43 | 43 | config.log_level = ENV.fetch('RAILS_LOG_LEVEL', 'info') |
44 | 44 |
|
45 | 45 | # Prevent health checks from clogging up the logs. |
|
51 | 51 | # Replace the default in-process memory cache store with a durable alternative. |
52 | 52 | # config.cache_store = :mem_cache_store |
53 | 53 |
|
54 | | - # Use a real queuing backend for Active Job (and separate queues per environment). |
| 54 | + # Replace the default in-process and non-durable queuing backend for Active Job. |
55 | 55 | config.active_job.queue_adapter = :sidekiq |
| 56 | + |
56 | 57 | # Ignore bad email addresses and do not raise email delivery errors. |
57 | 58 | # Set this to true and configure the email server for immediate delivery to raise delivery errors. |
58 | 59 | # config.action_mailer.raise_delivery_errors = false |
|
61 | 62 | config.action_mailer.default_url_options = { host: 'www.theodinproject.com', protocol: 'https' } |
62 | 63 | config.action_mailer.asset_host = 'https://www.theodinproject.com' |
63 | 64 |
|
64 | | - # Specify outgoing SMTP server. Remember to add smtp/* credentials via rails credentials:edit. |
| 65 | + # Specify outgoing SMTP server. Remember to add smtp/* credentials via bin/rails credentials:edit. |
65 | 66 | # config.action_mailer.smtp_settings = { |
66 | 67 | # user_name: Rails.application.credentials.dig(:smtp, :user_name), |
67 | 68 | # password: Rails.application.credentials.dig(:smtp, :password), |
|
0 commit comments