Hi all. Maybe is a naive question, but how can I c...
# questions
s
Hi all. Maybe is a naive question, but how can I change the name of my kedro project? I understand that some kedro files use the project name to execute the pipeline. Thanks!
d
the pyproject.toml is the bit you need to be sure matches the folder name
d
There's no "easy" way to just rename, but you can look in https://github.com/kedro-org/kedro/blob/main/kedro/templates/project (or whatever starter you used) to see wherever
{{ cookiecutter.project_name }}
,
{{ cookiecutter.repo_name }}
, or
{{ cookiecutter.python_package }}
was used. Those are the things that Kedro automatically filled in for you.