dotenv-0.6.0.3: Loads environment variables from dotenv files

Copyright© 2015–2018 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 [ParsedVariable] Source #

Returns a parser for a Dotenv configuration file. Accepts key and value arguments separated by =. Comments in all positions are handled appropriately.