Migrate the app to puma
Closed this issue · 2 comments
t27duck commented
Puma is kinda becoming the de facto web server to serve Rails apps nowadays as it's become the default server for new Rails apps. This app shouldn't be doing anything that isn't thread-safe, so it should be no real issue to switch.
mileszs commented
Is it simply a matter of switching gems and changing the Procfile, @t27duck ? I would think so, but it's been a while since I've needed to make the switch.
t27duck commented
Switch the gems, probably source a config/puma.rb file either from rails default or stolen from another project, and update the Procfile as outlined by Heroku (either calling puma
or straight up rails s
)
With the system tests PR merged, removing the line that forces capybara to run webrick should be done too.