No description
Find a file
2025-12-02 19:25:57 +01:00
locale fix: do not display empty console 2025-11-08 22:17:47 +01:00
src/rougail/output_console feat: document output 2025-12-02 19:25:57 +01:00
tests feat: document output 2025-12-02 19:25:57 +01:00
CHANGELOG.md bump: version 0.2.0a18 → 0.2.0a19 2025-11-21 08:08:31 +01:00
LICENSE fix: license, pyproject and so on 2024-10-31 19:34:04 +01:00
pyproject.toml bump: version 0.2.0a18 → 0.2.0a19 2025-11-21 08:08:31 +01:00
README.fr.md feat: document output 2025-12-02 19:25:57 +01:00
README.md feat: document output 2025-12-02 19:25:57 +01:00

Table of Contents

🇬🇧 (EN) - 🇫🇷 (FR)

Configuration for rougail-console

🛈 Informations

Path: console
disabled
Disabled: if console is not set in "Select for output"

Variable Description Default value Type Validator
console.show_secrets
Command line:
• --console.show_secrets
• --console.no-show_secrets
Environment variable: ROUGAILCLI_CONSOLE.SHOW_SECRETS
Show secrets instead of obscuring them. false boolean mandatory
console.mandatory
Command line:
• --console.mandatory
• --console.no-mandatory
Environment variable: ROUGAILCLI_CONSOLE.MANDATORY
Test mandatories variables before display in console. do not test if "cli.read_write" is true boolean mandatory
console.key_is_description
Command line:
• --console.key_is_description
• --console.no-key_is_description
Environment variable: ROUGAILCLI_CONSOLE.KEY_IS_DESCRIPTION
In tree the key is the family or variable description inside of it's name
#
# undocumented_modes:
# description: Variables with those modes are not documented
# multi: true
# mandatory: false
# disabled:
# jinja:

# {% if not modes_level %}
# there is no mode
# {% endif %}
# description: disabled when there is no mode available
# validators:
# - jinja:

# {% if _.undocumented_modes not in modes_level %}
# this mode is not available
# {% endif %}
# description: verify if disable modes already exists.
true
console.max_width
Command line: --console.max_width
Environment variable: ROUGAILCLI_CONSOLE.MAX_WIDTH
Maximum number of characters per line.
Null means unlimited.
integer The minimum value is 50.