在 Windows 上启动 Sinatra Web 应用程序

发布于 2024-12-05 11:34:11 字数 286 浏览 0 评论 0原文

我是 Ruby/Sinatra 的新手,但继承了 Sinatra 应用程序。

我阅读了一些文档,但正在寻找一种简单的方法来运行现有的 Sinatra 应用程序。

我读过 Sinatra-reloader 很适合开始用于开发,但我只是希望实际启动 Web 应用程序。

我用来启动应用程序并指定端口的命令行命令是什么? 该应用程序当前使用 config.ru 文件进行配置。

I am new to Ruby/Sinatra but have inherited a Sinatra application.

I read some documention but am looking for a just a simple way to run the existing Sinatra application.

I've read that Sinatra-reloader is good to start use for development, but I'm just looking to actually startup the web application.

What's the command line command I use to start the application and specify the port?
The application is currently configured with a config.ru file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

青衫负雪 2024-12-12 11:34:11

使用thin或其他网络服务器:

gem install thin

然后只需传入机架配置文件(config.ru):

$ thin -R config.ru start
>> Thin web server (v1.2.11 codename Bat-Shit Crazy)
>> Maximum connections set to 1024
>> Listening on 0.0.0.0:3000, CTRL+C to stop

本例中的端口为3000,将浏览器指向0.0.0.0:3000

Use thin or some other webserver:

gem install thin

Then just pass in the rack config file(config.ru):

$ thin -R config.ru start
>> Thin web server (v1.2.11 codename Bat-Shit Crazy)
>> Maximum connections set to 1024
>> Listening on 0.0.0.0:3000, CTRL+C to stop

the port in this case is 3000, point browser to 0.0.0.0:3000

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