We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, even if the application.yml is ignored using .gitignore file, on running bundle exec figaro install, the entry is appended again.
bundle exec figaro install
The entry can be present already if you are not the only one in the team and someone started using Figaro before you.
The text was updated successfully, but these errors were encountered:
I looked into this and found that if you have
# Ignore application configuration /config/application.yml
in your .gitignore, nothing will be appended. However, if you removed either of the two lines, it will append both lines and make the file redundant.
It seems that figaro should really only care about /config/application.yml. I'll put in a PR for this fix.
/config/application.yml
Sorry, something went wrong.
We shouldn't hardcode the path also. So it should just care about application.yml
@laserlemon your views?
As of today, we should hardcore the path because that's exactly where Figaro will look for it. Thank you for checking on this!
No branches or pull requests
Currently, even if the application.yml is ignored using .gitignore file, on running
bundle exec figaro install
, the entry is appended again.The entry can be present already if you are not the only one in the team and someone started using Figaro before you.
The text was updated successfully, but these errors were encountered: