I am certain that I should not publish my email password to the public git repository in the environment.rb file. Is there a way to avoid this without including the entire file in the .gitignore?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You could save your email credentials within another file config/email.credentials.yml:
and within your environment.rb file just load them with (for example):
then you would mention the credentials file within the .gitignore file. Additionally, if you deploy the app on several servers, you might check that the file exists within an initializer and otherwise raise an error. So you make sure the app doesn't start unless the mail config file is present. |
||||
|
|
|
I also discovered another method which might even be easier: config/initializers/setup_mail.rb. In there put the following for gmail apps (example):
Then just add to .gitignore file. This way you only edit 2 (rather than 3) files. |
|||||
|
|
That is what I use:
and confidential.rb is a file like:
|
||||
|
|