尝试将 Puma Web Server 与 heroku 一起用于应用程序。我使用以下内容创建了一个名为“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)