-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
77ce4ea
commit b08a254
Showing
6 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Here you can define all your data sets by using simple YAML syntax. | ||
# | ||
# Documentation for this file format can be found in "The Data Catalog" | ||
# Link: https://docs.kedro.org/en/stable/data/data_catalog.html |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
"""Project pipelines.""" | ||
|
||
from kedro.framework.project import find_pipelines | ||
from kedro.pipeline import Pipeline | ||
|
||
|
||
def register_pipelines() -> dict[str, Pipeline]: | ||
"""Register the project's pipelines. | ||
Returns: | ||
A mapping from pipeline names to ``Pipeline`` objects. | ||
""" | ||
pipelines = find_pipelines() | ||
# https://github.com/kedro-org/kedro/issues/2526 | ||
pipelines["__default__"] = sum(pipelines.values(), start=Pipeline([])) | ||
return pipelines |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
"""Project settings. | ||
There is no need to edit this file | ||
unless you want to change values from the Kedro defaults. | ||
For further information, including these default values, see | ||
https://docs.kedro.org/en/stable/kedro_project_setup/settings.html. | ||
""" | ||
|
||
from kedro.config import OmegaConfigLoader | ||
|
||
CONFIG_LOADER_CLASS = OmegaConfigLoader | ||
CONFIG_LOADER_ARGS = { | ||
"base_env": "base", | ||
"default_run_env": "local", | ||
} |