如何在 Windows 上使用 Thin 启动和停止 Sinatra 应用程序?

发布于 2024-10-18 07:13:53 字数 231 浏览 3 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

私野 2024-10-25 07:13:53

使用像 Dmitry Maksimov 建议的 config.ru 文件:

#config.ru
require './your_app_file'

run YourApp

然后从 rackup -D 开始,这意味着 deamonize,因此它在后台运行。

但我不建议将此用于开发。最好看看 Shotgun

Use a config.ru file like Dmitry Maksimov suggested:

#config.ru
require './your_app_file'

run YourApp

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

離殇 2024-10-25 07:13:53

在应用程序的顶级目录中创建rackup文件 - config.ru - 包含以下内容:

# config.ru
$: << File.expand_path(File.dirname(__FILE__))

require 'your app'
run Sinatra::Application

然后只需使用thin start运行您的应用程序

Create in the top directory of your application rackup file - config.ru - with the following content:

# config.ru
$: << File.expand_path(File.dirname(__FILE__))

require 'your app'
run Sinatra::Application

Then just run your app with the thin start

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文