I\'ve got a Sinatra \"hello world\" app that I am trying to run using jRuby. It works when I run the app, but not when I run rackup. Can anyone tell me what is going on here?
#config.ru require "./app.rb" set :bind, '0.0.0.0' set :port, 9292 #set your port! Sinatra::Application.run!
try this code and type rackup
rackup
Then you can get the results you want.