foreman - Rails: can Zeus read the .env file? -


i'm using zeus pre-load rails environment replacement developing foreman. zeus isn't picking values .env file.

is possible zeus this?

you can use dotenv gem :

https://github.com/bkeepers/dotenv

in gemfile

gem 'dotenv', groups: [:development, :test] 

bundle install , restart zeus.

your .env variables loaded in development environment zeus preloads.


Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -