Compare commits
3 commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e72d8b1891 | |||
| e701eba1d9 | |||
| 11a251ed88 |
136 changed files with 1256 additions and 168 deletions
|
|
@ -1,3 +1,10 @@
|
|||
## 0.1.0a17 (2025-12-30)
|
||||
|
||||
### Fix
|
||||
|
||||
- doc
|
||||
- update tests
|
||||
|
||||
## 0.1.0a16 (2025-12-22)
|
||||
|
||||
### Fix
|
||||
|
|
|
|||
28
README.fr.md
Normal file
28
README.fr.md
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
---
|
||||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
[🇬🇧 (EN)](README.md) - [🇫🇷 (FR)](README.fr.md)
|
||||
|
||||
## Charger les variables d'environnement
|
||||
|
||||
> [!NOTE]
|
||||
>
|
||||
> Les valeurs des variables peuvent être définies directement à partir d'une variable d'environnement.\
|
||||
> \
|
||||
> Les noms des variables d\'environnement commencent par un préfixe (par défaut ROUGAIL_) suivi du chemin de la variable en majuscules, par exemple : ROUGAIL_MA_VARIABLE. Si vous utilisez des espaces de noms, le préfixe sera le nom de l'espace de noms en majuscule.\
|
||||
> \
|
||||
> Notez que les chemins des variables peuvent contenir des points (« . »), qui ne sont pas autorisés partout. Pour éviter tout problème, utilisez la commande `env`, par exemple : `env ROUGAIL_MA_FAMILLE.MA_VARIABLE=1 rougail`.\
|
||||
> \
|
||||
> Pour les valeurs, il n'y a pas de différence entre un nombre et une lettre (ils peuvent être entre guillemets ou non). Cependant, les booléens sont True ou False. Le séparateur pour les variables multiple est la virgule.\
|
||||
> **Chemin** : environment\
|
||||
> *`désactivé`*\
|
||||
> **Désactivé** : si environment n'est pas défini dans "[Sélection pour données utilisateur](#step.user_data)"
|
||||
|
||||
| Variable | Description | Valeur par défaut | Type | Validateur |
|
||||
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|---------------------------------------------------------------------------------------------------|------------------------------------------------------|
|
||||
| **<a id="environment.default_environment_name" name="environment.default_environment_name">environment.default_environment_name</a>**<br/>**Ligne de commande** : <br/>--environment.default_environment_name<br/>**Variable d'environnement** : ENVIRONMENT.DEFAULT_ENVIRONMENT_NAME | Nom du préfix d'environnement par défaut. | ROUGAIL | [`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `obligatoire` | Doit seulement utiliser des caractères en majuscule. |
|
||||
| **<a id="environment.custom_separator" name="environment.custom_separator">environment.custom_separator</a>**<br/>**Ligne de commande** : <br/>--environment.custom_separator<br/>**Variable d'environnement** : ENVIRONMENT.CUSTOM_SEPARATOR | Remplace le caractère séparateur « . » dans les chemins par un autre.<br/>Le caractère point (« . ») peut ne pas être autorisé dans le nom de la variable d'environnement. Attention, le nom de la variable avec des points est toujours disponible en plus du nom avec ce caractère. | | [`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) | |
|
||||
| **<a id="environment.with_secrets" name="environment.with_secrets">environment.with_secrets</a>**<br/>**Ligne de commande** : <br/>• --environment.with_secrets<br/>• --environment.no-with_secrets<br/>**Variable d'environnement** : ENVIRONMENT.WITH_SECRETS | Les variables d'environnement peuvent contenir des secrets. | true | [`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `obligatoire` | |
|
||||
|
||||
|
||||
28
README.md
28
README.md
|
|
@ -1,2 +1,28 @@
|
|||
# rougail-user-data-environment
|
||||
---
|
||||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
[🇬🇧 (EN)](README.md) - [🇫🇷 (FR)](README.fr.md)
|
||||
|
||||
## Load environment variables
|
||||
|
||||
> [!NOTE]
|
||||
>
|
||||
> Variable values can be defined directly from an environment variable.\
|
||||
> \
|
||||
> Environnement variable names begin with a prefix (by default ROUGAIL_) followed by the variable path in uppercase, for example: ROUGAIL_MY_VARIABLE. If you are using namespaces, the prefix is the name of the namespace in uppercase.\
|
||||
> \
|
||||
> Note that variable paths can contain dots ("."), which are not permitted everywhere. To avoid any issues, use the `env` command, for example: `env ROUGAIL_MY_FAMILY.MY_VARIABLE=1 rougail`.\
|
||||
> \
|
||||
> For values, there is no difference between a number and a letter (they can be enclosed in quotes or not). However, booleans are True or False. The separator for multiple variables is a comma.\
|
||||
> **Path**: environment\
|
||||
> *`disabled`*\
|
||||
> **Disabled**: if environment is not set in "[Select for user datas](#step.user_data)"
|
||||
|
||||
| Variable | Description | Default value | Type | Validator |
|
||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------|-------------------------------------------------------------------------------------------------|--------------------------------------|
|
||||
| **<a id="environment.default_environment_name" name="environment.default_environment_name">environment.default_environment_name</a>**<br/>**Command line**: <br/>--environment.default_environment_name<br/>**Environment variable**: ENVIRONMENT.DEFAULT_ENVIRONMENT_NAME | Name of the default environment prefix. | ROUGAIL | [`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | Should only use uppercase character. |
|
||||
| **<a id="environment.custom_separator" name="environment.custom_separator">environment.custom_separator</a>**<br/>**Command line**: <br/>--environment.custom_separator<br/>**Environment variable**: ENVIRONMENT.CUSTOM_SEPARATOR | Replace the separator character "." in path by an other.<br/>The character dot (".") may not be allowed in the environment variable name. Note that the variable name with dots is always available in addition to the name with this character. | | [`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) | |
|
||||
| **<a id="environment.with_secrets" name="environment.with_secrets">environment.with_secrets</a>**<br/>**Command line**: <br/>• --environment.with_secrets<br/>• --environment.no-with_secrets<br/>**Environment variable**: ENVIRONMENT.WITH_SECRETS | Environnement variables may contain secrets. | true | [`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | |
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -5,8 +5,8 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: 2025-10-04 17:04+0200\n"
|
||||
"PO-Revision-Date: 2025-10-04 17:04+0200\n"
|
||||
"POT-Creation-Date: 2025-12-29 17:45+0100\n"
|
||||
"PO-Revision-Date: 2025-12-29 17:52+0100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: fr\n"
|
||||
|
|
@ -14,7 +14,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"X-Generator: Poedit 3.7\n"
|
||||
"X-Generator: Poedit 3.8\n"
|
||||
|
||||
#: src/rougail/user_data_environment/annotator.py:46
|
||||
msgid ""
|
||||
|
|
@ -33,16 +33,77 @@ msgstr ""
|
|||
"utiliser de données utilisateur \"environment\", donc \"{0}\" est invalide"
|
||||
|
||||
#: src/rougail/user_data_environment/config.py:34
|
||||
msgid "Configuration loading environment variables"
|
||||
msgstr "Configuration le chargement des variables d'environnements"
|
||||
msgid "Load environment variables"
|
||||
msgstr "Charger les variables d'environnement"
|
||||
|
||||
#: src/rougail/user_data_environment/config.py:36
|
||||
msgid "Variable values can be defined directly from an environment variable."
|
||||
msgstr ""
|
||||
"Les valeurs des variables peuvent être définies directement à partir d'une "
|
||||
"variable d'environnement."
|
||||
|
||||
#: src/rougail/user_data_environment/config.py:38
|
||||
msgid ""
|
||||
"Environnement variable names begin with a prefix (by default ROUGAIL_) "
|
||||
"followed by the variable path in uppercase, for example: "
|
||||
"ROUGAIL_MY_VARIABLE. If you are using namespaces, the prefix is the name of "
|
||||
"the namespace in uppercase."
|
||||
msgstr ""
|
||||
"Les noms des variables d\\'environnement commencent par un préfixe (par "
|
||||
"défaut ROUGAIL_) suivi du chemin de la variable en majuscules, par exemple : "
|
||||
"ROUGAIL_MA_VARIABLE. Si vous utilisez des espaces de noms, le préfixe sera "
|
||||
"le nom de l'espace de noms en majuscule."
|
||||
|
||||
#: src/rougail/user_data_environment/config.py:40
|
||||
msgid ""
|
||||
"Note that variable paths can contain dots (\".\"), which are not permitted "
|
||||
"everywhere. To avoid any issues, use the `env` command, for example: `env "
|
||||
"ROUGAIL_MY_FAMILY.MY_VARIABLE=1 rougail`"
|
||||
msgstr ""
|
||||
"Notez que les chemins des variables peuvent contenir des points (« . »), qui "
|
||||
"ne sont pas autorisés partout. Pour éviter tout problème, utilisez la "
|
||||
"commande `env`, par exemple : `env ROUGAIL_MA_FAMILLE.MA_VARIABLE=1 rougail`"
|
||||
|
||||
#: src/rougail/user_data_environment/config.py:42
|
||||
msgid ""
|
||||
"For values, there is no difference between a number and a letter (they can "
|
||||
"be enclosed in quotes or not). However, booleans are True or False. The "
|
||||
"separator for multiple variables is a comma."
|
||||
msgstr ""
|
||||
"Pour les valeurs, il n'y a pas de différence entre un nombre et une lettre "
|
||||
"(ils peuvent être entre guillemets ou non). Cependant, les booléens sont "
|
||||
"True ou False. Le séparateur pour les variables multiple est la virgule."
|
||||
|
||||
#: src/rougail/user_data_environment/config.py:47
|
||||
msgid "if environment is not set in \"step.user_data\""
|
||||
msgstr "si environment n'est pas défini dans \"step.user_data\""
|
||||
|
||||
#: src/rougail/user_data_environment/config.py:50
|
||||
msgid "Name of the default environment prefix"
|
||||
msgstr "Nom du préfix d'environnement par défaut"
|
||||
|
||||
#: src/rougail/user_data_environment/config.py:49
|
||||
#: src/rougail/user_data_environment/config.py:56
|
||||
msgid "should only use uppercase character"
|
||||
msgstr "doit seulement utiliser des caractères en majuscule"
|
||||
|
||||
#: src/rougail/user_data_environment/config.py:62
|
||||
msgid "Replace the separator character \".\" in path by an other"
|
||||
msgstr "Remplace le caractère séparateur « . » dans les chemins par un autre"
|
||||
|
||||
#: src/rougail/user_data_environment/config.py:63
|
||||
msgid ""
|
||||
"The character dot (\".\") may not be allowed in the environment variable "
|
||||
"name. Note that the variable name with dots is always available in addition "
|
||||
"to the name with this character."
|
||||
msgstr ""
|
||||
"Le caractère point (« . ») peut ne pas être autorisé dans le nom de la "
|
||||
"variable d'environnement. Attention, le nom de la variable avec des points "
|
||||
"est toujours disponible en plus du nom avec ce caractère."
|
||||
|
||||
#: src/rougail/user_data_environment/config.py:67
|
||||
msgid "Environnement variables may contain secrets"
|
||||
msgstr "Les variables d'environnement peuvent contenir des secrets"
|
||||
|
||||
#~ msgid "Define values from the environment"
|
||||
#~ msgstr "Défini les valeurs pour l'environnemnt"
|
||||
#~ msgid "The \".\" character could be not allowed in path name"
|
||||
#~ msgstr ""
|
||||
#~ "Le caractère \".\" peut ne pas être autorisé dans le nom des chemins"
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2025-10-04 17:05+0200\n"
|
||||
"POT-Creation-Date: 2025-12-29 17:52+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -24,14 +24,46 @@ msgid "variable name must be a lowercase name when we want to use user data \"en
|
|||
msgstr ""
|
||||
|
||||
#: src/rougail/user_data_environment/config.py:34
|
||||
msgid "Configuration loading environment variables"
|
||||
msgid "Load environment variables"
|
||||
msgstr ""
|
||||
|
||||
#: src/rougail/user_data_environment/config.py:36
|
||||
msgid "Variable values can be defined directly from an environment variable."
|
||||
msgstr ""
|
||||
|
||||
#: src/rougail/user_data_environment/config.py:38
|
||||
msgid "Environnement variable names begin with a prefix (by default ROUGAIL_) followed by the variable path in uppercase, for example: ROUGAIL_MY_VARIABLE. If you are using namespaces, the prefix is the name of the namespace in uppercase."
|
||||
msgstr ""
|
||||
|
||||
#: src/rougail/user_data_environment/config.py:40
|
||||
msgid "Note that variable paths can contain dots (\".\"), which are not permitted everywhere. To avoid any issues, use the `env` command, for example: `env ROUGAIL_MY_FAMILY.MY_VARIABLE=1 rougail`"
|
||||
msgstr ""
|
||||
|
||||
#: src/rougail/user_data_environment/config.py:42
|
||||
msgid "For values, there is no difference between a number and a letter (they can be enclosed in quotes or not). However, booleans are True or False. The separator for multiple variables is a comma."
|
||||
msgstr ""
|
||||
|
||||
#: src/rougail/user_data_environment/config.py:47
|
||||
msgid "if environment is not set in \"step.user_data\""
|
||||
msgstr ""
|
||||
|
||||
#: src/rougail/user_data_environment/config.py:50
|
||||
msgid "Name of the default environment prefix"
|
||||
msgstr ""
|
||||
|
||||
#: src/rougail/user_data_environment/config.py:49
|
||||
#: src/rougail/user_data_environment/config.py:56
|
||||
msgid "should only use uppercase character"
|
||||
msgstr ""
|
||||
|
||||
#: src/rougail/user_data_environment/config.py:62
|
||||
msgid "Replace the separator character \".\" in path by an other"
|
||||
msgstr ""
|
||||
|
||||
#: src/rougail/user_data_environment/config.py:63
|
||||
msgid "The character dot (\".\") may not be allowed in the environment variable name. Note that the variable name with dots is always available in addition to the name with this character."
|
||||
msgstr ""
|
||||
|
||||
#: src/rougail/user_data_environment/config.py:67
|
||||
msgid "Environnement variables may contain secrets"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
|||
|
||||
[project]
|
||||
name = "rougail.user_data_environment"
|
||||
version = "0.1.0a16"
|
||||
version = "0.1.0a17"
|
||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||
readme = "README.md"
|
||||
description = "Rougail user_data environment"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
__version__ = "0.1.0a16"
|
||||
__version__ = "0.1.0a17"
|
||||
|
|
|
|||
|
|
@ -31,12 +31,20 @@ def get_rougail_config(
|
|||
) -> dict:
|
||||
options = f"""
|
||||
environment:
|
||||
description: {_("Configuration loading environment variables")}
|
||||
description: {_("Load environment variables")}
|
||||
help: |-
|
||||
{_('Variable values can be defined directly from an environment variable.')}
|
||||
|
||||
{_('Environnement variable names begin with a prefix (by default ROUGAIL_) followed by the variable path in uppercase, for example: ROUGAIL_MY_VARIABLE. If you are using namespaces, the prefix is the name of the namespace in uppercase.')}
|
||||
|
||||
{_('Note that variable paths can contain dots ("."), which are not permitted everywhere. To avoid any issues, use the `env` command, for example: `env ROUGAIL_MY_FAMILY.MY_VARIABLE=1 rougail`')}
|
||||
|
||||
{_('For values, there is no difference between a number and a letter (they can be enclosed in quotes or not). However, booleans are True or False. The separator for multiple variables is a comma.')}
|
||||
disabled:
|
||||
jinja: |
|
||||
{{% if _.step.user_data is propertyerror or 'environment' not in _.step.user_data %}}
|
||||
disabled
|
||||
{{% endif %}}
|
||||
{{{{ _.step.user_data is propertyerror or 'environment' not in _.step.user_data }}}}
|
||||
return_type: boolean
|
||||
description: {_('if environment is not set in "step.user_data"')}
|
||||
|
||||
default_environment_name:
|
||||
description: {_("Name of the default environment prefix")}
|
||||
|
|
@ -45,14 +53,14 @@ environment:
|
|||
- jinja: |-
|
||||
{{{{ _.default_environment_name | upper != _.default_environment_name }}}}
|
||||
return_type: boolean
|
||||
description: {_("should only user uppercase character")}
|
||||
description: {_("should only use uppercase character")}
|
||||
disabled:
|
||||
variable: __.main_namespace
|
||||
when_not: null
|
||||
|
||||
custom_separator:
|
||||
description: {_('Replace the separator character "." in path by an other')}
|
||||
help: {_('The "." character could be not allowed in path name')}
|
||||
help: {_('The character dot (".") may not be allowed in the environment variable name. Note that the variable name with dots is always available in addition to the name with this character.')}
|
||||
mandatory: false
|
||||
|
||||
with_secrets:
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -1,7 +1,19 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"family \"family_disabled\" is disabled, \"family_disabled.variable1\" will be ignored when loading from environment variable",
|
||||
"family \"family_disabled\" is disabled, \"family_disabled.variable2\" will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"family \"family_disabled\" has property disabled, so cannot access to \"variable1\", it will be ignored when loading from environment variable",
|
||||
"family_disabled.variable1",
|
||||
null
|
||||
]
|
||||
],
|
||||
[
|
||||
[
|
||||
"family \"family_disabled\" has property disabled, so cannot access to \"variable2\", it will be ignored when loading from environment variable",
|
||||
"family_disabled.variable2",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"variable_disabled\" is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"variable_disabled",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"the value \"test\" is an invalid integer for \"variable_int\", which is not an integer, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"the value \"test\" is an invalid integer, it's not an integer, it will be ignored when loading from environment variable",
|
||||
"variable_int",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"family \"family_disabled_hidden\" is disabled and hidden, \"family_disabled_hidden.variable1\" will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"family \"family_disabled_hidden\" has property disabled and hidden, so cannot access to \"variable1\", it will be ignored when loading from environment variable",
|
||||
"family_disabled_hidden.variable1",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"the value \"**********\" is an invalid password for \"secret\", at least 10 characters are required, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"the value \"**********\" is an invalid password, at least 10 characters are required, it will be ignored when loading from environment variable",
|
||||
"secret",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"cannot set the value \"test\" to the family \"family\", it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"is a family so we cannot set the value \"test\", it will be ignored when loading from environment variable",
|
||||
"family",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,9 +1,33 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"leadership.follower_disabled\" at index \"0\" is disabled, it will be ignored when loading from environment variable",
|
||||
"variable \"leadership.follower_disabled\" at index \"1\" is disabled, it will be ignored when loading from environment variable",
|
||||
"variable \"leadership.follower_disabled\" at index \"2\" is disabled, it will be ignored when loading from environment variable",
|
||||
"variable \"leadership.follower_disabled_at_index\" at index \"1\" is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable \"follower_disabled\" at index \"0\" is disabled, it will be ignored when loading from environment variable",
|
||||
"leadership.follower_disabled",
|
||||
null
|
||||
]
|
||||
],
|
||||
[
|
||||
[
|
||||
"variable \"follower_disabled\" at index \"1\" is disabled, it will be ignored when loading from environment variable",
|
||||
"leadership.follower_disabled",
|
||||
null
|
||||
]
|
||||
],
|
||||
[
|
||||
[
|
||||
"variable \"follower_disabled\" at index \"2\" is disabled, it will be ignored when loading from environment variable",
|
||||
"leadership.follower_disabled",
|
||||
null
|
||||
]
|
||||
],
|
||||
[
|
||||
[
|
||||
"variable \"follower_disabled_at_index\" at index \"1\" is disabled, it will be ignored when loading from environment variable",
|
||||
"leadership.follower_disabled_at_index",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"index \"1\" is greater than the leadership length \"1\" for option \"leadership.follower\" in environment variable"
|
||||
[
|
||||
[
|
||||
"index \"1\" is greater than the leadership length \"1\" for option \"follower\" in environment variable",
|
||||
"leadership.follower",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,9 +1,33 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"family \"leadership\" is hidden, \"leadership.var1\" (a first variable) will be ignored when loading from environment variable",
|
||||
"family \"leadership\" is hidden, \"leadership.var2\" (a first variable) at index \"0\" will be ignored when loading from environment variable",
|
||||
"index \"1\" is greater than the leadership length \"1\" for option \"leadership.var2\" (a first variable) in environment variable",
|
||||
"index \"2\" is greater than the leadership length \"1\" for option \"leadership.var2\" (a first variable) in environment variable"
|
||||
[
|
||||
[
|
||||
"family \"leadership\" has property hidden, so cannot access to \"var1\" (a first variable), it will be ignored when loading from environment variable",
|
||||
"leadership.var1",
|
||||
null
|
||||
]
|
||||
],
|
||||
[
|
||||
[
|
||||
"variable \"var2\" (a first variable) at index \"0\" is hidden, it will be ignored when loading from environment variable",
|
||||
"leadership.var2",
|
||||
null
|
||||
]
|
||||
],
|
||||
[
|
||||
[
|
||||
"variable \"var2\" (a first variable) at index \"1\" is hidden, it will be ignored when loading from environment variable",
|
||||
"leadership.var2",
|
||||
null
|
||||
]
|
||||
],
|
||||
[
|
||||
[
|
||||
"variable \"var2\" (a first variable) at index \"2\" is hidden, it will be ignored when loading from environment variable",
|
||||
"leadership.var2",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"variable": "string_1_True_None"
|
||||
"variable": "string_1_True_"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": []
|
||||
}
|
||||
2
tests/results/test/01_6string_multi_length/file/all.env
Normal file
2
tests/results/test/01_6string_multi_length/file/all.env
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
ROUGAIL_VAR1="string1,string2,string3"
|
||||
ROUGAIL_VAR2="string1,string2,string3"
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
ROUGAIL_VAR1="string1,string2,string3"
|
||||
ROUGAIL_VAR2="string1,string2,string3"
|
||||
|
|
@ -0,0 +1 @@
|
|||
|
||||
12
tests/results/test/01_6string_multi_length/makedict/all.json
Normal file
12
tests/results/test/01_6string_multi_length/makedict/all.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"var1": [
|
||||
"string1",
|
||||
"string2",
|
||||
"string3"
|
||||
],
|
||||
"var2": [
|
||||
"string1",
|
||||
"string2",
|
||||
"string3"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"var1": [
|
||||
"val1",
|
||||
"val2",
|
||||
"val3"
|
||||
],
|
||||
"var2": [
|
||||
"val4",
|
||||
"val5"
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"var2\" (a second variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"var2",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"var2\" (a second variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"var2",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,7 +1,19 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"var1\" (a first variable) is hidden, it will be ignored when loading from environment variable",
|
||||
"variable \"var2\" (a second variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from environment variable",
|
||||
"var1",
|
||||
null
|
||||
]
|
||||
],
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"var2",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"var2\" (a second variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"var2",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"var1\" (a first variable) is hidden, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from environment variable",
|
||||
"var1",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"var2\" (a second variable) is hidden, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from environment variable",
|
||||
"var2",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"var3\" (a third variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"var3",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,7 +1,19 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"var2\" (a second variable) is hidden, it will be ignored when loading from environment variable",
|
||||
"variable \"var3\" (a third variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from environment variable",
|
||||
"var2",
|
||||
null
|
||||
]
|
||||
],
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"var3",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"variable2\" (a seconde variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"variable2",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"variable2\" (a seconde variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"variable2",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"var1\" (a first variable) is hidden, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from environment variable",
|
||||
"var1",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,8 +1,26 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"var2\" (a first variable) is hidden, it will be ignored when loading from environment variable",
|
||||
"variable \"var3\" (a second variable) is hidden, it will be ignored when loading from environment variable",
|
||||
"variable \"var4\" (a forth variable) is hidden, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from environment variable",
|
||||
"var2",
|
||||
null
|
||||
]
|
||||
],
|
||||
[
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from environment variable",
|
||||
"var3",
|
||||
null
|
||||
]
|
||||
],
|
||||
[
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from environment variable",
|
||||
"var4",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"variable",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"variable",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"variable",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"variable",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"variable",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"variable",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"variable",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"condition\" (a condition) is hidden, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from environment variable",
|
||||
"condition",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"condition\" (a condition) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"condition",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"variable",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"condition\" (a condition) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"condition",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"variable",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"family \"family\" (possibly hidden family) is hidden, \"family.subfamily.var1\" (a variable) will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"family \"family\" (possibly hidden family) has property hidden, so cannot access to \"var1\" (a variable), it will be ignored when loading from environment variable",
|
||||
"family.subfamily.var1",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"leadership.follower\" (a follower) at index \"0\" is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable \"follower\" (a follower) at index \"0\" is disabled, it will be ignored when loading from environment variable",
|
||||
"leadership.follower",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,8 +1,26 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"leader.follower\" (a follower) at index \"0\" is disabled, it will be ignored when loading from environment variable",
|
||||
"variable \"leader.follower\" (a follower) at index \"1\" is disabled, it will be ignored when loading from environment variable",
|
||||
"variable \"leader.follower\" (a follower) at index \"2\" is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable \"follower\" (a follower) at index \"0\" is disabled, it will be ignored when loading from environment variable",
|
||||
"leader.follower",
|
||||
null
|
||||
]
|
||||
],
|
||||
[
|
||||
[
|
||||
"variable \"follower\" (a follower) at index \"1\" is disabled, it will be ignored when loading from environment variable",
|
||||
"leader.follower",
|
||||
null
|
||||
]
|
||||
],
|
||||
[
|
||||
[
|
||||
"variable \"follower\" (a follower) at index \"2\" is disabled, it will be ignored when loading from environment variable",
|
||||
"leader.follower",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"var\" (A suffix variable) is hidden, it will be ignored when loading from environment variable"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": []
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": []
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
ROUGAIL_DYNVAL1.VAR="string1"
|
||||
ROUGAIL_DYNVAL2oVAR="string1"
|
||||
ROUGAIL_VAR1="string1"
|
||||
ROUGAIL_VAR2="string1,string2,string3"
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
ROUGAIL_DYNVAL1.VAR="string1"
|
||||
ROUGAIL_DYNVAL2oVAR="string1"
|
||||
ROUGAIL_VAR1="string1"
|
||||
ROUGAIL_VAR2="string1,string2,string3"
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
ROUGAIL_DYNVAL1.VAR="string1"
|
||||
ROUGAIL_DYNVAL2oVAR="string1"
|
||||
ROUGAIL_VAR1="string1"
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"dynval1.var": "string1",
|
||||
"dynval2.var": "string1",
|
||||
"var1": "string1",
|
||||
"var2": [
|
||||
"string1",
|
||||
"string2",
|
||||
"string3"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"dynval1.var": "string1",
|
||||
"dynval2.var": "string1",
|
||||
"var1": "string1",
|
||||
"var2": [
|
||||
"string1",
|
||||
"string1"
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"dynval1.var\" (A dynamic variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"dynval1.var",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"dynval1.var\" (A dynamic variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"dynval1.var",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,7 +1,19 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"family \"dynval2\" (a dynamic family) is hidden, \"dynval2.var\" (a variable) will be ignored when loading from environment variable",
|
||||
"family \"dynval2\" (a dynamic family) is hidden, \"dynval2.family.var\" (a new variable) will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"family \"dynval2\" (a dynamic family) has property hidden, so cannot access to \"var\" (a variable), it will be ignored when loading from environment variable",
|
||||
"dynval2.var",
|
||||
null
|
||||
]
|
||||
],
|
||||
[
|
||||
[
|
||||
"family \"dynval2\" (a dynamic family) has property hidden, so cannot access to \"var\" (a new variable), it will be ignored when loading from environment variable",
|
||||
"dynval2.family.var",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,9 +1,33 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"family \"rougail.leadership\" is hidden, \"rougail.leadership.var1\" (a first variable) will be ignored when loading from environment variable",
|
||||
"family \"rougail.leadership\" is hidden, \"rougail.leadership.var2\" (a first variable) at index \"0\" will be ignored when loading from environment variable",
|
||||
"index \"1\" is greater than the leadership length \"1\" for option \"rougail.leadership.var2\" (a first variable) in environment variable",
|
||||
"index \"2\" is greater than the leadership length \"1\" for option \"rougail.leadership.var2\" (a first variable) in environment variable"
|
||||
[
|
||||
[
|
||||
"family \"leadership\" has property hidden, so cannot access to \"var1\" (a first variable), it will be ignored when loading from environment variable",
|
||||
"rougail.leadership.var1",
|
||||
null
|
||||
]
|
||||
],
|
||||
[
|
||||
[
|
||||
"variable \"var2\" (a first variable) at index \"0\" is hidden, it will be ignored when loading from environment variable",
|
||||
"rougail.leadership.var2",
|
||||
null
|
||||
]
|
||||
],
|
||||
[
|
||||
[
|
||||
"variable \"var2\" (a first variable) at index \"1\" is hidden, it will be ignored when loading from environment variable",
|
||||
"rougail.leadership.var2",
|
||||
null
|
||||
]
|
||||
],
|
||||
[
|
||||
[
|
||||
"variable \"var2\" (a first variable) at index \"2\" is hidden, it will be ignored when loading from environment variable",
|
||||
"rougail.leadership.var2",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"rougail.variable": "string_1_True_None"
|
||||
"rougail.variable": "string_1_True_"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": []
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": []
|
||||
}
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
ROUGAIL.VAR1="string1,string2,string3"
|
||||
ROUGAILoVAR2="string1,string2,string3"
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
ROUGAIL.VAR1="string1,string2,string3"
|
||||
ROUGAILoVAR2="string1,string2,string3"
|
||||
|
|
@ -0,0 +1 @@
|
|||
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"rougail.var1": [
|
||||
"string1",
|
||||
"string2",
|
||||
"string3"
|
||||
],
|
||||
"rougail.var2": [
|
||||
"string1",
|
||||
"string2",
|
||||
"string3"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"rougail.var1": [
|
||||
"val1",
|
||||
"val2",
|
||||
"val3"
|
||||
],
|
||||
"rougail.var2": [
|
||||
"val4",
|
||||
"val5"
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.var\" (autosave variable) is hidden, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from environment variable",
|
||||
"rougail.var",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.var2\" (a second variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"rougail.var2",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.var2\" (a second variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"rougail.var2",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,7 +1,19 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.var1\" (a first variable) is hidden, it will be ignored when loading from environment variable",
|
||||
"variable \"rougail.var2\" (a second variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from environment variable",
|
||||
"rougail.var1",
|
||||
null
|
||||
]
|
||||
],
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"rougail.var2",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.var2\" (a second variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"rougail.var2",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.var1\" (a first variable) is hidden, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from environment variable",
|
||||
"rougail.var1",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.var2\" (a second variable) is hidden, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from environment variable",
|
||||
"rougail.var2",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.var3\" (a third variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"rougail.var3",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,7 +1,19 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.var2\" (a second variable) is hidden, it will be ignored when loading from environment variable",
|
||||
"variable \"rougail.var3\" (a third variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from environment variable",
|
||||
"rougail.var2",
|
||||
null
|
||||
]
|
||||
],
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"rougail.var3",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.variable2\" (a seconde variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"rougail.variable2",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.variable2\" (a seconde variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"rougail.variable2",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.var1\" (a first variable) is hidden, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from environment variable",
|
||||
"rougail.var1",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,8 +1,26 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.var2\" (a first variable) is hidden, it will be ignored when loading from environment variable",
|
||||
"variable \"rougail.var3\" (a second variable) is hidden, it will be ignored when loading from environment variable",
|
||||
"variable \"rougail.var4\" (a forth variable) is hidden, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from environment variable",
|
||||
"rougail.var2",
|
||||
null
|
||||
]
|
||||
],
|
||||
[
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from environment variable",
|
||||
"rougail.var3",
|
||||
null
|
||||
]
|
||||
],
|
||||
[
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from environment variable",
|
||||
"rougail.var4",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"rougail.variable",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"rougail.variable",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"rougail.variable",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"rougail.variable",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"rougail.variable",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"rougail.variable",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"rougail.variable",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.condition\" (a condition) is hidden, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from environment variable",
|
||||
"rougail.condition",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.condition\" (a condition) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"rougail.condition",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"rougail.variable",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,7 +1,19 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.condition\" (a condition) is hidden, it will be ignored when loading from environment variable",
|
||||
"variable \"rougail.variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from environment variable",
|
||||
"rougail.condition",
|
||||
null
|
||||
]
|
||||
],
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"rougail.variable",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"rougail.variable",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.condition\" (a condition) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"rougail.condition",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
"variable \"rougail.variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||
[
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from environment variable",
|
||||
"rougail.variable",
|
||||
null
|
||||
]
|
||||
]
|
||||
]
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue