问题标签 [buildpack]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
96 浏览

node.js - 如何在 python buildpack 中只包含节点二进制文件?

我们正在运行一个 python 应用程序,通过在 node.js 中编写一个组件在我们的客户端和服务器之间共享一些代码。

在 python buildpack 中安装节点的最简单方法是什么?

我已经分叉了一个第 3 方构建包,我用它来执行此操作,以便我们可以访问节点二进制文件。

理想情况下,我希望尽可能地坚持使用官方的 buildpack。我的问题是,是否有一种不那么侵入性的方式来安装节点而不是其他任何东西。

0 投票
1 回答
711 浏览

php - 我怎样才能使用这个heroku php buildpack?

我正在尝试使用https://github.com/taeram/heroku-buildpack-php-columbo以便我可以在我的 PHP 安装上使用 NEW RELIC。无论我尝试什么,在推送到 heroku 时总是会出现以下错误:

有没有人对这里可能发生的事情有任何想法?我可以毫无问题地成功使用https://github.com/heroku/heroku-buildpack-php 。我想做的就是在 php/apache 旁边有 NEW RELIC 支持。

0 投票
1 回答
540 浏览

heroku - Heroku 陨石 buildpack 错误,还有其他选择吗?

在过去的六个月里,我一直在使用这些 buildpack,从来没有遇到过任何问题:

https://github.com/oortcloud/heroku-buildpack-meteorite
https://github.com/cwaring/heroku-buildpack-meteorite-phantomjs

现在,当我尝试推送我的应用程序时出现此错误:

在安装 Meteor 和所有meteroite 软件包后立即发生错误。

我已将问题发布到 github

那么,在解决这个问题之前,任何人都可以推荐这些构建包的替代方案以供临时使用吗?

编辑:

要复制我的错误,请在终端中执行此操作:mrt create buildpack-test && cd buildpack-test/ && git init && heroku create --remote staging --stack cedar --buildpack https://github.com/oortcloud/heroku-buildpack-meteorite.git && git add -A && git commit -m 'Init' && git push staging master

0 投票
3 回答
6416 浏览

node.js - Have you managed to make your node nginx proxy setup on Heroku work?

Have you managed to make your node + nginx proxy setup on Heroku work?

Could you, please, tell me how have your organized the directories structure and the files in each directory before doing "git push heroku master"? Which buildpack did you use?

I am getting the message "Push rejected, no Cedar-supported app detected" every time I do "git push heroku master". I have put a "nginx.conf.erb" file in a "/conf" directory.

Thank you.

0 投票
2 回答
522 浏览

ruby-on-rails - On heroku, how to delete files installed by a buildpack that are no longer needed?

I've suddenly started getting slug size errors on deploy:

-----> Compiled slug size: 350.4MB is too large (max is 300MB).

My app is far too small to be causing this, verified by manually inspecting bundle and assets size. Upon investigation in a one-off dyno, I discovered that files installed by the R buildpack are still in vendor/ even though I stopped using the buildpack months ago and unset BUILDPACK_URL:

Deleting them in a one-off dyno doesn't do it; they reappear in a new one.

How can I make these directories, like R/ and gcc-4.3/ permanently go away?

0 投票
1 回答
2642 浏览

node.js - Heroku“多个构建包”构建包不工作

我的应用程序同时依赖于 nodejs 和 phantomjs,我遵循 trigoman 的回答Is there a working nodejs/phantomjs Heroku buildpack? .

但我被困如下:

该过程停止了很长时间,然后

0 投票
1 回答
153 浏览

git - Heroku:使用 multipack 在 java 目标上的 Ruby system() 命令

在 Heroku 我想做

java_controller.rb:

我尝试了合装包解决方案

.buildpacks

我不断得到

!推送被拒绝,无法编译 Multipack 应用程序

当我做一个 git push heroku master 时。

这似乎是由于git clone在多包编译中导致错误:请求的 URL 返回错误:400 while access https://... git --version is 1.7.0

0 投票
2 回答
523 浏览

ruby-on-rails - Heroku 上的自定义二进制文件

我试图让lp_solve库在 Heroku 上工作,但似乎无法让它被识别。我已经尝试了我能找到的所有资源,包括使用vulcan,将其添加到/bin我的项目目录中,添加它/vendor并更改 PATH,我什至甚至创建了一个buildpack我正在使用buildpack-multi,但在每种情况下结果都是相同的No such file or directory:即使我 bash 进入我的实例并尝试直接执行文件,它也会给我同样的错误。我已经让它可执行了。我错过了什么?

0 投票
1 回答
383 浏览

ruby-on-rails - Heroku 拒绝我的自定义 buildpack 用于 ruby​​-on-rails 和 Latex

我需要添加管道

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

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

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

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

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

之后我回到工作状态。

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

0 投票
1 回答
857 浏览

heroku - 使用 buildpack 在 Heroku 上部署 Go Revel 应用程序时出错

我正在尝试使用此 buildpack https://github.com/robfig/heroku-buildpack-go-revel在 Heroku 上使用 Go 和 Revel,但它似乎不起作用:

我在尝试使用基本的 revel helloworld 示例时遇到错误。