-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Loads environment variables dotenv files -- @package dotenv @version 0.1.0.0 module Configuration.Dotenv.Parse -- | 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. configParser :: Parser [(String, String)] module Configuration.Dotenv -- | Loads the given list of options into the environment. Optionally -- override existing variables with values from Dotenv files. load :: Bool -> [(String, String)] -> IO () -- | Loads the options in the given file to the environment. Optionally -- override existing variables with values from Dotenv files. loadFile :: Bool -> FilePath -> IO ()