I use wizards (0.78) with figaro (1.1.1) in my Rails (4.2) application without any problems. Currently figaro requires all variables to be in config/application.yml or set to ENV . Foreman will always try to download the .env file if it exists (unfortunately, they do not distinguish between the file and the directory in their scan), if you do not specify your .ENV files with - e
I think you have 3 options:
1) Use figaro and move your custom .yml files to config/application.yml
2) The exact wizard to the user .env file as a workaround (it must exist): touch.emptyenv novice wizard -e.emptyenv
3) Rename the .env directory to another location, for example. '.custom_env'
I hope this helps.
source share