We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support a size type corresponding to the size-in-bytes formats supported by Typesafe-Config as specified in https://github.com/typesafehub/config/blob/master/HOCON.md#size-in-bytes-format
size
Example config spec for tscfg to process:
# required size sizeReq: "size" # optional size, no default sizeOpt: "size?" # optional size with default value 1024 bytes sizeOptDef: "size | 1K" # list of sizes sizes: [ size ] # list of lists of sizes sizes2: [ [ size ] ]
Input config example:
sizeReq = "2048K" sizeOpt = "1024000" sizes = [ 1000, "64G", "16kB" ] sizes2 = [[ 1000, "64G" ], [ "16kB" ] ]
The text was updated successfully, but these errors were encountered:
6a3d89b
carueda
No branches or pull requests
Support a
size
type corresponding to the size-in-bytes formats supported by Typesafe-Config as specified in https://github.com/typesafehub/config/blob/master/HOCON.md#size-in-bytes-formatExample config spec for tscfg to process:
Input config example:
The text was updated successfully, but these errors were encountered: