Questions tagged [heroku-review-app]
18 questions
3
votes
1 answer
Using NodeJS development dependencies in Heroku review-app post-deploy step
I have a (demo) application hosted on Heroku. I've enabled Heroku's "review app" feature to spin up new instances for pull request reviews. These review instances all get a new MongoDB (on mLab) provisioned for them through Heroku's add-on system.…

Jesse van der Pluijm
- 703
- 1
- 7
- 20
3
votes
3 answers
Specify Postgres database plan in Heroku review apps
I am trying to use Heroku review apps for testing and demonstrating my site to my colleagues. The site has a large database that will not function with Heroku's free hobby-dev databases.
I am trying to use the app.json manifest file to specify the…

Pete Dermott
- 663
- 1
- 9
- 20
2
votes
0 answers
How to automatically enable custom worker dynos on Heroku specified in Procfile and app.json?
I'm attempting to deploy our app using heroku review apps but we can't seem to enable the worker dynos automatically. It seems like the formation designations are being completely ignored. When I run curl -n…

Christopher Changchien
- 272
- 2
- 14
2
votes
2 answers
See an empty page when access `/rails/mailers` in production
I am using rails 5 and wanted to see the /rails/mailers url in production mode under the authentication.
I am able to implement authentication under the URLs but I can only see a blank page on production(Heroku, review app) but on local I can see…

Nishutosh Sharma
- 1,926
- 2
- 24
- 39
2
votes
1 answer
Can I use Heroku registry as a base image for review app service?
One of my Heroku pipelines is currently using Docker deploys (https://devcenter.heroku.com/articles/container-registry-and-runtime) in combination with heroku.yml (https://devcenter.heroku.com/articles/heroku-yml-build-manifest).
The review apps are…

Scott Davidson
- 995
- 1
- 9
- 12
1
vote
1 answer
Heroku seems to be ignoring addons section in app.json
I have a project with app.json, and I am trying to add additional addons to be deployed with review apps, however, the addons are not being created when I destroy and recreate the review app.
Here is my app.json:
{
"name": "Redacted product",
…

Azelphur
- 73
- 7
1
vote
0 answers
Custom Procfile for Review Apps in Heroku
Is it possible to use a custom Procfile, different from the one used in production/staging, for Review Apps in Heroku? How?
So far all of my searching yielded nothing.

Pablo Fernandez
- 279,434
- 135
- 377
- 622
1
vote
1 answer
Is it possible to use free dynos for review apps by default?
We are a team that uses Heroku pipeline. By default, each review app uses hobby dyno. Is it possible to configure the pipeline to use free dyno for each review app by default?

Noname
- 4,432
- 2
- 10
- 17
1
vote
0 answers
Can't view Review Apps despite View permission being granted
Collaborators with view access cannot open review apps created through a GitHub Pull Request. I'm an Admin at our corporate Heroku account and can't view apps either. It was working fine until last Friday it seems. I couldn't see any change in…

George Ferreira
- 103
- 2
- 9
1
vote
1 answer
Can I output timestamps in heroku review app build logs?
Currently build steps are not output to heroku log aggregates, and as such don't have timestamps. When wanting to debug slow build times, it would be very helpful to enable timestamps at various steps of our build, specifically on the container…

Nick Bender
- 73
- 5
1
vote
1 answer
How to obtain review app name through platform api
I have a github action that deploys a review app using the platform api, which then returns the review app id:
https://devcenter.heroku.com/articles/platform-api-reference#review-app-create
Now I need to obtain the review app name (or url) from the…

opike
- 7,053
- 14
- 68
- 95
1
vote
0 answers
Enable uuid-ossp on heroku-postgresql automatically for review apps
I have a heroku review app which gets deployed on every github pull request.
{
"name": "app_name",
"description": "",
"stack": "container",
"repository": "https://github.com/my_org/my_app.git",
"buildpack": "heroku/php",
"image":…

Luis Banegas Saybe
- 13
- 1
- 4
1
vote
0 answers
How to cancel redundant builds on Heroku Review-app
I want to start building the old review apps only with the current changes on the PRs I have.
Current behaviour:
After a push to the PR heroku start building the review app.
After another change is pushed to the PR heroku enqueue another build but…

Daniel Gomez Rico
- 15,026
- 20
- 92
- 162
0
votes
1 answer
How to enable a worker dyno for a Heroku review app
I have a Rails v6.x app running on Heroku. We use review apps to preview features etc before they go live. Our app uses Sidekiq to manage background jobs that run on a worker dyno in production. When we open a pull request and the review app gets…

emersonthis
- 32,822
- 59
- 210
- 375
0
votes
0 answers
Heroku pipeline (for GitHub review app) keeps disappearing
We're setting up review apps with GitHub integration.
We followed this:
https://help.heroku.com/R8AE3YBV/why-did-my-pipeline-disappear#:~:text=If%20you%20do%20not%20have,the%20pipeline%20is%20automatically%20deleted.
and created a default dummy app…

Phil L.
- 2,637
- 1
- 17
- 11