# frozen_string_literal: true

workers_count = Integer(ENV || 1) threads_count = Integer(ENV || 5) threads threads_count, threads_count

port ENV || 9292 environment ENV || 'production'

if workers_count > 1

preload_app!
workers workers_count

# rubocop:disable Lint/EmptyBlock
before_fork do
end

on_worker_boot do
end
# rubocop:enable Lint/EmptyBlock

end