简单的 Sinatra 作品集网站
基本上,我只是想问如何在 Sinatra 中制作一个简单的网站。
但如果可能的话;
它需要对单个管理员进行简单的身份验证。
简而言之,管理员设置主页上的内容,例如内容是什么。
内容基本上是从管理页面通过管道传输的,因此不需要数据库,如果不可能,那么什么 ORM 让我立即启动并运行?
另外,我计划将其托管在 Heroku 上,我会遇到什么限制?
谢谢,提前抽出时间。
Basically, I just want to ask how to approach making a simple site in Sinatra.
But if possible;
It needs a simple authentication for a single admin.
In a nutshell, the admin sets what's on the main page, like what's the content.
The content is basically piped from the admin page, so no database is needed, if it's not possible then what ORM gets me up and running immediately?
Also, I'm planning to host it on Heroku, what limitation will I encounter?
Thanks, beforehand for the time spared.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
开始于:
走吧!
我会为您的 ORM 尝试 Sequel 。
您需要一个地方来存储您的数据。您不能只是从另一个页面“管道”它。
Start with:
And go!
I would try Sequel for your ORM.
You need a place to store your data. You cannot just "pipe" it from another page.