0

你好,我正在尝试在 heroku 系统上部署一个 toto 博客。这是指南:网站

部署时出现错误。你能帮助我吗?谢谢

cristiano@ubuntu64bit1204:~$ git clone git://github.com/cloudhead/dorothy.git myblog
Cloning into 'myblog'...
remote: Counting objects: 202, done.
remote: Compressing objects: 100% (106/106), done.
remote: Total 202 (delta 88), reused 182 (delta 81)
Receiving objects: 100% (202/202), 20.97 KiB, done.
Resolving deltas: 100% (88/88), done.
cristiano@ubuntu64bit1204:~$ cd myblog/
cristiano@ubuntu64bit1204:~/myblog$ heroku create blogprova
Creating blogprova... done, stack is cedar
http://blogprova.herokuapp.com/ | git@heroku.com:blogprova.git
Git remote heroku added
cristiano@ubuntu64bit1204:~/myblog$ git push heroku master 
Counting objects: 202, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (99/99), done.
Writing objects: 100% (202/202), 20.97 KiB, done.
Total 202 (delta 88), reused 202 (delta 88)
 !     Heroku push rejected, no Cedar-supported app detected

To git@heroku.com:blogprova.git
 ! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'git@heroku.com:blogprova.git'
cristiano@ubuntu64bit1204:~/myblog$ 
4

1 回答 1

1

该项目缺少一个 Gemfile,该文件应指定所需的 gem。

更重要的是,该项目的最后一次提交是在 2010 年 5 月 14 日,所以我建议您可能希望找到积极维护的博客软件,否则您可能会遇到困难。

于 2013-02-24T00:12:54.787 回答