アプリケーション用の heroku で Puma Web Server を使用しようとしています。次のように「Procfile」というProcfileを作成しました。
web: bundle exec puma -C config/puma.rb
次の config/puma.rb ファイルもあります。
workers Integer(ENV['WEB_CONCURRENCY'] || 2)
threads_count = Integer(ENV['MAX_THREADS'] || 5)
threads threads_count, threads_count
preload_app!
rackup DefaultRackup
port ENV['PORT'] || 3000
environment ENV['RACK_ENV'] || 'development'
on_worker_boot do
ActiveRecord::Base.establish_connection
end
ターミナルで次の警告が表示されます
$git push heroku master
###### WARNING:
remote: No Procfile detected, using the default web server (webrick)