conf is:package

Not on Stackage, so not searched. Parser for Haskell-based configuration files.
Configuration management A configuration management library for programs and daemons. Features include:
  • Automatic, dynamic reloading in response to modifications to configuration files.
  • A simple, but flexible, configuration language, supporting several of the most commonly needed types of data, along with interpolation of strings from the configuration or the system environment (e.g. $(HOME)).
  • Subscription-based notification of changes to configuration properties.
  • An import directive allows the configuration of a complex application to be split across several smaller files, or common configuration data to be shared across several applications.
For details of the configuration file format, see http://hackage.haskell.org/packages/archive/configurator/latest/doc/html/Data-Configurator.html.
Configuration management library Library to abstract the parsing of many haskell config values from different config sources
A library for simple INI-based configuration files. The config-ini library is a set of small monadic languages for writing simple configuration languages with convenient, human-readable error messages.
parseConfig :: IniParser (Text, Int, Bool)
parseConfig = section "NETWORK" $ do
user <- field        "user"
port <- fieldOf      "port" number
enc  <- fieldFlagDef "encryption" True
return (user, port, enc)
Simple, layout-based value language similar to YAML or JSON This package implements a language similar to YAML or JSON but with fewer special cases and fewer dependencies. It emphasizes layout structure for sections and lists, and requires quotes around strings.
Tools for specifying and parsing configurations This package provides a collection of utils on top of the packages optparse-applicative, aeson, and yaml for configuring libraries and applications in a convenient and composable way. The main features are
  1. configuration management through integration of command line option parsing and configuration files and
  2. a Setup.hs file that generates a PkgInfo module for each component of a package that provides information about the package and the build.
Documentation on how to use this package can be found in the README and in the API documentation of the modules Configuration.Utils and Configuration.Utils.Setup.
Not on Stackage, so not searched. Schema definitions for the config-value package
conferer's source for reading json files Library to abstract the parsing of many haskell config values from different config sources
Not on Stackage, so not searched. conferer's provider for reading json files
Not on Stackage, so not searched. conferer's source for reading json files
Not on Stackage, so not searched. read, parse json config
Not on Stackage, so not searched. derive typeclass instances for decoding types from HOCON conf
Not on Stackage, so not searched. Configuration management
Not on Stackage, so not searched. parser for config files, shell variables, command line args.
Pretty printer and exporter for configurations from the "configurator" library. Pretty printers and exporters for Configs from the configurator library, in Data.Configurator. All results are intended to be valid parsing files in the configuration file syntax of the library. For a full round trip:
main = do
cfg <- load [Required "config.cfg"]
writeConf "config.cfg" cfg
This should load the config file, parse it, and then re-export it, rewriting the original config file. The result should be an identical configuration file (with keys potentially re-arranged and re-sorted, comments removed, etc.) See the Data.Configurator.Export module for more details and ways to modify the output style.
Reduced parser for configurator-ng config files This module provides a simplified and updated interface to the configuration file format of configurator and configurator-ng. Its aim is primarily to allow updating programs that depend on configurator-ng to new versions of GHC without changing the configuration file format.
Not on Stackage, so not searched.
Not on Stackage, so not searched. Configuration for reading dhall files
Not on Stackage, so not searched. conferer's FromConfig instances for hedis settings
Not on Stackage, so not searched. conferer's FromConfig instances for hspec Config
Not on Stackage, so not searched. Configuration for reading dhall files
Not on Stackage, so not searched. Configuration for reading yaml files
Not on Stackage, so not searched. conferer's FromConfig instances for snap Config
Not on Stackage, so not searched. Configuration for reading dhall files
Not on Stackage, so not searched. Configuration for reading yaml files