Question

I have an old project with classic Sinatra (not modular < Sinatra::Base). How can I make it use the Puma web server instead of Thin?

The only examples on the internet I could find using Puma were with modular Sinatra.

reference: http://www.sinatrarb.com/intro.html#Modular%20vs.%20Classic%20Style

Was it helpful?

Solution

Or if you just want use rakeup you can add to your config.ru

#\ -s puma
require './yourapp'
run Sinatra::Application

OTHER TIPS

Just create config.ru:

require './yourapp'
run Sinatra::Application

then run:

puma
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top