Comment on Why do so many tools have JSON config files?Comments−bonestamp210dFor our internal tooling we use something similar to a bash profile config file with name/value pairs separated by linebreaks. So, our configs look something like:env=stagingdb=0.0.0.0#descriptive commentetc=true−jetbalsa10dini file format is pretty much this[section_name]key=valuekey=value
Comments
For our internal tooling we use something similar to a bash profile config file with name/value pairs separated by linebreaks. So, our configs look something like:
env=staging
db=0.0.0.0
#descriptive comment
etc=true
ini file format is pretty much this
[section_name]
key=value
key=value