欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  资讯频道

使用Toto 和Heroku,5分钟部署一个Ruby博客

程序员文章站 2022-03-09 12:23:31
...


使用Toto 和Heroku,5分钟部署一个Ruby博客

  Toto (GitHub repo)是一个新的轻量级Ruby和基于Rack的blogging引擎,这是创作者Alexis Sellier特地为hacker们而设计的。内容通过Git来管理,文章通过内嵌的YAML元数据存储为文本文档。而且它只有300行代码。

 

Alexis在Heroku平台上部署只花了不到5分钟。

 

 


步骤:

 

  • 在Heroku.com上创建账户
  • gem install heroku
  • git clone git://github.com/cloudhead/dorothy.git your-blog-dir
  • cd your-blog-dir
  • heroku create
  • Use the URL returned by heroku create and add a line in to the Toto::Server.new block in config.ru like: set :url, 'http://your.heroku.url.here'
  • git commit -am "Added URL"
  • git push heroku master
  • You're live!

Try it:http://furious-fire-87.heroku.com/

 

点击查看Toto的文档

 

相关标签: Ruby Git