Popularity
7.7
Declining
Activity
0.0
Stable
2
19
0
Monthly Downloads: 12
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?
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