在 Windows 上启动 Sinatra Web 应用程序
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用thin或其他网络服务器:
然后只需传入机架配置文件(config.ru):
本例中的端口为3000,将浏览器指向0.0.0.0:3000
Use thin or some other webserver:
Then just pass in the rack config file(config.ru):
the port in this case is 3000, point browser to 0.0.0.0:3000