Use Puma
CI / test (3.4.1) (push) Has been cancelled

This commit is contained in:
2026-04-27 19:28:10 +01:00
parent a0d2f23999
commit 5b6337a868
2 changed files with 16 additions and 1 deletions
+1 -1
View File
@@ -1 +1 @@
web: rvmsudo bundle exec unicorn -p 9000
web: bundle exec puma -C config/puma.rb
+15
View File
@@ -0,0 +1,15 @@
max_threads_count = ENV.fetch("RAILS_MAX_THREADS", 5)
min_threads_count = ENV.fetch("RAILS_MIN_THREADS") { max_threads_count }
threads min_threads_count, max_threads_count
port ENV.fetch("PORT", 3000)
environment ENV.fetch("RAILS_ENV", "development")
pidfile ENV.fetch("PIDFILE", "tmp/pids/server.pid")
workers ENV.fetch("WEB_CONCURRENCY", 2)
preload_app!
plugin :tmp_restart