You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentations is not clear what the value for configure_sections parameter should be. Looking through the code, it appears that it wants a JSON document but the docs don't expose what the keys of this document should be. Thru some poking around, I came up with this format which works.
The config reader doesn't support multi-line config (ala yaml or json), so I ended up having to minify this document into one line which makes it cumbersome to edit.
I guess a second issue would be to convert the config reader to something other than key=value
The text was updated successfully, but these errors were encountered:
The documentations is not clear what the value for
configure_sections
parameter should be. Looking through the code, it appears that it wants a JSON document but the docs don't expose what the keys of this document should be. Thru some poking around, I came up with this format which works.The config reader doesn't support multi-line config (ala yaml or json), so I ended up having to minify this document into one line which makes it cumbersome to edit.
I guess a second issue would be to convert the config reader to something other than
key=value
The text was updated successfully, but these errors were encountered: