From b4ff3a0c3b3b2f62e1753ca938e33282ed1d05df Mon Sep 17 00:00:00 2001 From: Carmine DiMascio Date: Sat, 22 Sep 2018 11:37:30 -0400 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index df15de2..94edb27 100644 --- a/README.md +++ b/README.md @@ -2,12 +2,12 @@ ![](https://travis-ci.org/cdimascio/java-dotenv.svg?branch=master) ![](https://img.shields.io/badge/status-stable-green.svg) ![](https://img.shields.io/badge/coverage-94%25-blue.svg) ![](https://img.shields.io/badge/license-Apache%202.0-blue.svg) +A Java port of the Ruby dotenv project (which loads environment variables from a `.env` file). java-dotenv also offers a Kotlin DSL. +

dotenv

-A Java port of the Ruby dotenv project (which loads environment variables from a `.env` file). java-dotenv also offers a Kotlin DSL. - From the original Library: >Storing configuration in the environment is one of the tenets of a [twelve-factor](http://12factor.net/config) app. 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.