Pregunta

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

¿Fue útil?

Solución

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

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

Otros consejos

Just create config.ru:

require './yourapp'
run Sinatra::Application

then run:

puma
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top