summaryrefslogtreecommitdiff
path: root/devel/ruby-dotenv/DESCR
blob: 3cb88b43bbaa3ae19461c8391314186a734d4acc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Shim to load environment variables from `.env` into `ENV` in *development*.

Storing [configuration in the environment](http://www.12factor.net/config) is
one of the tenets of a [twelve-factor app](http://www.12factor.net/). Anything
that is likely to change between deployment environments-such as resource
handles for databases or credentials for external services - should be
extracted from the code into environment variables.

But it is not always practical to set environment variables on development
machines or continuous integration servers where multiple projects are
run. dotenv loads variables from a `.env` file into `ENV` when the environment
is bootstrapped.