I’m using pretty standard buildpacks:
[build]
builder = "heroku/buildpacks:20"
buildpacks = ["heroku/nodejs", "heroku/ruby"]
I’m using pretty standard buildpacks:
[build]
builder = "heroku/buildpacks:20"
buildpacks = ["heroku/nodejs", "heroku/ruby"]
So I was able to get this working by:
fly ssh console
bash
cd /app
cat profile.d/ruby.sh # executing is denied
Exporting the variables found there manually sets up what we need. Then we can do bin/rails c
and the console loads.
Update: My solution no longer works as now /app/profile.d
no longer exists. For a few minutes on one deploy (currently working through another issue) /cnb/process
existed but then disappeared when deploying again.