0

我需要添加管道

source file -> latex -> pdf file

到我正在开发并部署在 heroku ( http://vschool.herokuapp.com ) 的 rails 应用程序。我已经尝试按照以下建议

https://github.com/holiture/heroku-buildpack-tex

以及关于使用多包的进一步建议,例如,做

$ heroku config:add BUILDPACK_URL=https://github.com/ddollar/heroku-buildpack-multi.git

创建包含内容的文件 .buildpacks 后

git://github.com/heroku/heroku-buildpack-python.git
git://github.com/holiture/heroku-buildpack-tex.git
git://github.com/heroku/heroku-buildpack-ruby.git

这是我推动时发生的情况:

$ git push heroku master
Counting objects: 11, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (6/6), done.
Writing objects: 100% (6/6), 480 bytes | 0 bytes/s, done.
Total 6 (delta 5), reused 0 (delta 0)

-----> Fetching custom git buildpack... done

 !     Push rejected, no Cedar-supported app detected

To git@heroku.com:vschool.git
 ! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'git@heroku.com:vschool.git'

在此之后,我的应用程序被冲洗,我必须这样做:

$ heroku config:unset BUILDPACK_URL

之后我回到工作状态。

我一定不明白如何安装多个构建包。任何建议将不胜感激。

4

1 回答 1

0

尝试.buildpack

git://github.com/heroku/heroku-buildpack-ruby.git
git://github.com/holiture/heroku-buildpack-tex.git

Heroku 似乎在构建您的应用程序时可能正在搜索特定于 Python 的文件(requirements.txt 或 setup.py),而不是特定于 Ruby 的文件(Gemfile)。

于 2013-10-12T19:54:27.613 回答