Nicolas Betancourt Cardona
04/30/2025, 2:55 PMDeepyaman Datta
04/30/2025, 2:58 PM{{ cookiecutter.<something> }}
reference to find the types of things populated from the template, but you're on your own when it comes to the renaming. Since Kedro just creates the template and doesn't maintain some sort of connection to it, there's no way to automatically update things after the fact.Nicolas Betancourt Cardona
04/30/2025, 3:12 PMDeepyaman Datta
04/30/2025, 3:18 PMI guess the starter depends on my current Kedro version. How can I know which starter I used?I don't think there's any field per se saying which starter you used, but you can find your Kedro init version in
pyproject.toml
under the tool.kedro
section.
Would you disadvice against renaming it?Not really. I've renamed plenty of projects in the past. As with any software, you should just make sure you track your rename in version control (in case you need to revert the change) and test extensively to make sure everything still works. Realistically, most issues with renaming will result in a pipeline that doesn't run, so it shouldn't be that hard to catch.
Nicolas Betancourt Cardona
04/30/2025, 3:20 PMNok Lam Chan
04/30/2025, 4:07 PMkedro
, so you may need to change a few thing in pyproject.toml
but that should be all