edq.cli.config

This package provides tools for working with project configuration options.

This package contains the following CLI tools:


edq.cli.config.encrypt

Encrypt any unencrypted secrets present in configuration files.

usage: python3 -m edq.cli.config.encrypt [-h] [--dry-run] [PATHS ...]

edq.cli.config.list

List the current configuration options.

usage: python3 -m edq.cli.config.list [-h] [--include-cli] [--show-origin]
                                      [--skip-header]

edq.cli.config.set

Update configuration options. The file at the specified config location will be created if it doesn't exist.

usage: python3 -m edq.cli.config.set [-h]
                                     [--local | --project | --global | --file ]
                                     = [= ...]

edq.cli.config.unset

Unset the first matching instance of a configuration option. Does nothing if there is no matching config.

usage: python3 -m edq.cli.config.unset [-h]
                                       [--local | --project | --global | --file ]
                                       KEY [KEY ...]
1"""
2This package provides tools for working with project configuration options.
3"""