Popularity
7.6
Declining
Activity
0.0
Stable
2
18
0

Monthly Downloads: 9
Programming language: Haskell
License: MIT License
Tags: Configuration     Config    
Latest version: v0.1.1.1

config-value-getopt alternatives and similar packages

Based on the "config" category.
Alternatively, view config-value-getopt alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of config-value-getopt or a related project?

Add another 'config' Package

README

config-value-getopt

The config-value-getopt package allows GetOpt[1] specified options to be loaded from a configuration file in the config-value[2] format.

  • config-value section names are matched against the "long" option names in GetOpt.
  • Argument values can be provided as strings or numbers
  • An option will be omitted if its value is set to no
  • An option's argument will be omitted if its value is set to yes

Example:

address:       "::"
port:          9000
no-access-log: yes
hostname:      no

translates to

--address="::" --port="9000" --no-access-log
  1. https://hackage.haskell.org/package/base-4.8.2.0/docs/System-Console-GetOpt.html
  2. https://hackage.haskell.org/package/config-value