dotenv-0.3.0.1: Loads environment variables from dotenv files

Copyright© 2015–2016 Stack Builders Inc.
LicenseMIT
MaintainerStack Builders <hackage@stackbuilders.com>
Stabilityexperimental
Portabilityportable
Safe HaskellNone
LanguageHaskell2010

Configuration.Dotenv.Parse

Description

Parser for files in dotenv format. These files generally consist of lines with the form key=value. Comments and blank lines are also supported. More information on the dotenv format can be found in the project README and the test suite.

Synopsis

Documentation

configParser :: Parser [(String, String)] Source #

Returns a parser for a Dotenv configuration file. Accepts key and value arguments separated by "=". Comments are allowed on lines by themselves and on blank lines.