Skip to content
New issue

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

Update documentations of Configuration default environments #3321

Merged
merged 21 commits into from
Dec 7, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add docs
Signed-off-by: Nok <nok.lam.chan@quantumblack.com>
  • Loading branch information
noklam committed Nov 22, 2023
commit c902418e1f0fdf4e98b76ca9e2e5b1284b70b538
4 changes: 4 additions & 0 deletions docs/source/configuration/advanced_configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@
### How to bypass the configuration loading rules
You can bypass the configuration patterns and set configuration directly on the instance of a config loader class. You can bypass the default configuration (catalog, parameters and credentials) as well as additional configuration.

For example, you can [use hooks to load external credentials](../hooks/common_use_cases.md##use-hooks-to-load-external-credentials).
noklam marked this conversation as resolved.
Show resolved Hide resolved

Alternatively, if you are using config loader as a standalone component, you can override configuration as follow:

Check warning on line 79 in docs/source/configuration/advanced_configuration.md

View workflow job for this annotation

GitHub Actions / vale

[vale] docs/source/configuration/advanced_configuration.md#L79

[Kedro.toowordy] 'Alternatively' is too wordy
Raw output
{"message": "[Kedro.toowordy] 'Alternatively' is too wordy", "location": {"path": "docs/source/configuration/advanced_configuration.md", "range": {"start": {"line": 79, "column": 1}}}, "severity": "WARNING"}

Check warning on line 79 in docs/source/configuration/advanced_configuration.md

View workflow job for this annotation

GitHub Actions / vale

[vale] docs/source/configuration/advanced_configuration.md#L79

[Kedro.weaselwords] 'Alternatively' is a weasel word!
Raw output
{"message": "[Kedro.weaselwords] 'Alternatively' is a weasel word!", "location": {"path": "docs/source/configuration/advanced_configuration.md", "range": {"start": {"line": 79, "column": 1}}}, "severity": "WARNING"}
merelcht marked this conversation as resolved.
Show resolved Hide resolved

```{code-block} python
:lineno-start: 10
:emphasize-lines: 8
Expand Down