2017-01-17 14:09:03 -05:00
|
|
|
threads_count = ENV.fetch('MAX_THREADS') { 5 }.to_i
|
2016-03-12 10:09:46 -05:00
|
|
|
threads threads_count, threads_count
|
|
|
|
|
2017-01-17 14:09:03 -05:00
|
|
|
port ENV.fetch('PORT') { 3000 }
|
|
|
|
environment ENV.fetch('RAILS_ENV') { 'development' }
|
|
|
|
workers ENV.fetch('WEB_CONCURRENCY') { 2 }
|
2016-03-12 10:09:46 -05:00
|
|
|
|
2016-11-02 11:38:54 -04:00
|
|
|
preload_app!
|
2016-08-17 11:56:23 -04:00
|
|
|
|
2016-11-02 11:38:54 -04:00
|
|
|
on_worker_boot do
|
2017-01-17 14:09:03 -05:00
|
|
|
if ENV['HEROKU'] # Spawn the workers from Puma, to only use one dyno
|
2017-01-17 06:00:03 -05:00
|
|
|
@sidekiq_pid ||= spawn('bundle exec sidekiq -q default -q mailers -q push')
|
|
|
|
end
|
|
|
|
|
2016-11-02 11:38:54 -04:00
|
|
|
ActiveRecord::Base.establish_connection if defined?(ActiveRecord)
|
|
|
|
end
|
2016-08-17 11:56:23 -04:00
|
|
|
|
|
|
|
plugin :tmp_restart
|