如何在 Windows 上使用 Thin 启动和停止 Sinatra 应用程序?
class App < Sinatra::Base
def hello
"world"
end
end
从文档中我发现我可以像这样启动应用程序:
App.run
尽管这不会返回控制权。
如何在后台启动应用程序以及如何停止它。
我的环境是:Windows,Ruby 1.9.2
class App < Sinatra::Base
def hello
"world"
end
end
From documentation I found that I can start the application like this:
App.run
Although this does not return the control.
How do I start the application in the background and how can I then stop it.
My environment is: Windows, Ruby 1.9.2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用像 Dmitry Maksimov 建议的 config.ru 文件:
然后从
rackup -D
开始,这意味着 deamonize,因此它在后台运行。但我不建议将此用于开发。最好看看 Shotgun
Use a config.ru file like Dmitry Maksimov suggested:
And then start with
rackup -D
which means deamonize and therefore it runs in the background.I wouldn't recommend this for development though. Better have a look at Shotgun
在应用程序的顶级目录中创建rackup文件 - config.ru - 包含以下内容:
然后只需使用
thin start
运行您的应用程序Create in the top directory of your application rackup file - config.ru - with the following content:
Then just run your app with the
thin start