Inability to enable user-env compilation on Heroku

this is the first time i ask for something so sorry if i'm not accurate enough!

I tried to download my rails application on heroku using the user-env-compile command to manage my private keys, but I have the error "There is no such function: user-env-compile".

I checked on Herocu devcenter and it seems that user-env-compile is deprecated and replaced with the argument ENV_DIR.

Here's the link: https://devcenter.heroku.com/articles/labs-user-env-compile

I can’t really get what to do! can someone better explain to me what i should do?

Thank you,

Federico

+5
source share
1 answer

You don’t have to do anything (the laboratories are outdated and you have to delete them), by default now heroku will export your environement variables during slug compilation.

Be careful, it is not recommended to use the environement variable during pool compilation (you can check http://12factor.net/ for more information)

Hope this helps.

+3
source

Source: https://habr.com/ru/post/956762/


All Articles