| Copyright | © 2015–2018 Stack Builders Inc. |
|---|---|
| License | MIT |
| Maintainer | Stack Builders <hackage@stackbuilders.com> |
| Stability | experimental |
| Portability | portable |
| Safe Haskell | None |
| Language | Haskell2010 |
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
- configParser :: Parser [ParsedVariable]
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.