Xygeni CLI Configuration options
$ xygeni -cop | --conf-option key:value -cop | --conf-option key2:value ... <command> ...# Disable commit resolution
xygeni -cop 'commitResolution:never' scan ...
# Set parallel mode with two threads
xygeni -cop 'mode:parallel' -cop 'parallelism:2' secrets ...
# Disable timeout
xygeni -cop 'timeout:0' secrets ...
# More complex cases (using long or short option names):
xygeni --config-option "report[format=text]/sort: exposure" \
--config-option "report[format=text]/borders: none" \
--config-option "parallelism: min(availableProcessors - 1, 4)" \
scan ...
# Imagine that the user has this environment var instead of the expected JENKINS_URL
xygeni -cop "cicd[kind=jenkins]/url: ${MY_JENKINS_URL}" misconf ...Last updated