You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
355 B

  1. threads_count = ENV.fetch('MAX_THREADS') { 5 }.to_i
  2. threads threads_count, threads_count
  3. port ENV.fetch('PORT') { 3000 }
  4. environment ENV.fetch('RAILS_ENV') { 'development' }
  5. workers ENV.fetch('WEB_CONCURRENCY') { 2 }
  6. preload_app!
  7. on_worker_boot do
  8. ActiveRecord::Base.establish_connection if defined?(ActiveRecord)
  9. end
  10. plugin :tmp_restart