Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Heroku deploy button #47

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Fix Heroku deploy button #47

wants to merge 2 commits into from

Conversation

Matho
Copy link

@Matho Matho commented Jul 5, 2022

Hi @parndt

I have fixed the Heroku deploy button. This fixes open issues at #29 and refinery/refinerycms#3508

The first problem was, that ruby-2.6.5 is no longer available on heroku-20 and heroku-22 Heroku stacks. So I have set the default stack to "heroku-18" Note from heroku deploy proces:

This app is using the Heroku-18 stack, which is deprecated:
https://devcenter.heroku.com/changelog-items/2432
From April 30th 2023, Heroku-18 will be end-of-life, and apps using it
will no longer receive security updates, and be run at your own risk.
From May 1st 2023, builds will no longer be allowed for Heroku-18 apps.

The second issue was, that on 16 December 2021, Heroku changed the Node version to 16.13.1 (which was previously 12.16.2).
To fix this, I inserted 'buildpacks' section to app.json configuration and exact version of Node to package.json. Now the Node v12.13.0 is installed and is installed before installation of Ruby gems.

This fixes the Heroku deployment

Because I have added the "node": "12.13.0" to the package.json file, it raises error on localhost installations. The error is error [email protected]: The engine "node" is incompatible with this module. Expected version "12.13.0". Got "10.19.0" The 10.19.0 number is the version of Node you have installed on localhost. To ignore this warning and run the Node you have installed, simly ignore it with yarn install --ignore-engines I have added the info to the Readme.

Thanks,
Martin

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant