I'm trying to make my project OSS, and I'd like to remove any sensitive info from the configs. I'm trying to have ENV['DB_PASS'] = mypassword
. Where would I set this? I've tried export DB_PASS=mypassword
in my .bashrc file. But that's not working.
views:
10answers:
1
A:
Are you sure export
isn't working? Have you tried echo $DB_PASS
? (Also, changes to .bashrc won't take effect until the next time you log in.)
A more common way to handle this problem is to create a separate config file that is not tracked in your repository, and then provide a config.sample
file demonstrating the common configuration options but with dummy values.
bemace
2010-10-31 17:18:58