繁体   English   中英

在 heroku-buildpack-static 中使用变量

[英]Using variables with heroku-buildpack-static

我有一个 monorepo,其中包含一个 React 应用程序。 我正在使用create-react-app Buildpack ,它使用heroku-buildpack-static来提供服务。

由于应用程序在foo/examples/bar ,我创建了以下static.json

{
  "root": "foo/examples/${EXAMPLE}/build/",
  "routes": {
    "/**": "index.html"
  }
}

以及一个值为barEXAMPLE配置变量。 根据文档,这应该有效。

当应用程序由 heroku 构建时,我在日志中看到:

app[web.1]: nginx: [emerg] unknown "example" variable
app[web.1]: Process exited unexpectedly: nginx
app[web.1]: Going down, terminating child processes...
heroku[web.1]: State changed from starting to crashed
heroku[web.1]: Process exited with status 1

有没有办法修复这个构建,或者有更好的方法来部署这种 repo?

所以你的主要buildpackcreate-react-app-buildpack

然后使用 3 个buildpackscreate-react-app-buildpack 所示

https://github.com/heroku/heroku-buildpack-nodejs.git
https://github.com/mars/create-react-app-inner-buildpack.git#v9.0.0
https://github.com/heroku/heroku-buildpack-static.git

您正在寻找的功能在 buildpack heroku-buildpack-static 如果我们看同样的源代码

只有 3 个变量支持插值,我们可以在

heroku-buildpack-static

现在为了让我们也获得root变量的插值,我们需要修改代码,如

json["root"] ||= DEFAULT[:root]
json["root"] = NginxConfigUtil.interpolate(json["root"], ENV) if json["root"]

所以我分叉了 repo 来更新相同的

heroku-buildpack-static

但是由于 buildpacks 是在create-react-app- buildpack 中定义的,所以我们需要 fork 并更新.buildpacks文件,如下所示

create-react-app-buildpack

现在之后我们使用这个分叉仓库作为我们的构建包

$ heroku config:set  JS_RUNTIME_TARGET_BUNDLE="/app/packages/examples/grid/build/static/js/*.js"
$ heroku buildpacks:set https://github.com/tarunlalwani/heroku-buildpack-static.git
$ heroku config:set  EXAMPLE=grid
$ heroku push origin master

现在构建工作正常

工作正常

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM