Reputation: 318
Im using http auth in a rails app and I need to use .env files in order to keep my passwords secure.
I know I need use them and the .gitignore and .env file to do this, but I have no idea how to?
Upvotes: 0
Views: 203
Reputation: 3376
You can use dotenv gem to save environment variables in .env
. I think it's pretty easy to start.
Upvotes: 1