* Initial automatic cleanup with rubocop * Fix syntax error introduced by rubocop * Cleanup seeds file * Cleanup lib folder * Exclude bin folder because it contains auto generated files * Make Rubocop a little bit more chatty * Block length should not include comments in the count * Cleanup config folder * Cleanup specs * Updated Rubocop version and generated a todo file * Fix broken ArticlesApi spec * Fix tests * Restored rubocop pre-commit hook
23 lines
630 B
Ruby
23 lines
630 B
Ruby
workers Integer(ENV["WEB_CONCURRENCY"] || 2)
|
|
threads_count = Integer(ENV["MAX_THREADS"] || 5)
|
|
threads threads_count, threads_count
|
|
|
|
worker_timeout 15
|
|
worker_shutdown_timeout 8
|
|
|
|
preload_app!
|
|
|
|
rackup DefaultRackup
|
|
port ENV["PORT"] || 3000
|
|
environment ENV["RACK_ENV"] || "development"
|
|
|
|
on_worker_boot do
|
|
# Worker specific setup for Rails 4.1+
|
|
# See: https://devcenter.heroku.com/articles/deploying-rails-applications-with-the-puma-web-server#on-worker-boot
|
|
ActiveRecord::Base.establish_connection
|
|
end
|
|
|
|
before_fork do
|
|
require "puma_worker_killer"
|
|
PumaWorkerKiller.enable_rolling_restart(12 * 3600) # 12 hours in seconds
|
|
end
|