Hi guys, I now have a repo setup just like `kedro ...
# questions
y
Hi guys, I now have a repo setup just like
kedro new
creates, meaning that Kedro's things like
conf/
,
data/
,
pyproject.toml
are in the repo root. What I want to do is to start developing a few python packages in the same repo that are outside of kedro project and independent from it. What's a proper way to do this? Collapse my current repo to one folder
kedro_project/
, put whole current root content there, and have those packages folders same level as this whole kedro thing?
m
If they are independent from the kedro project, why would you want them in the same repo?
d
If you do want to build a monorepo out of a Pedro project you can do, the pyproject file is the one that will be shared.
thankyou 1
Although I think I’m with @Matthias Roels here, polyrepo is often easier
y
Thanks!
m
@datajoely as mentioned before, it depends. I’m not necessarily against a mono repo. In fact, I truly believe a mono repo is often easier for a lot of reasons. But again, it all depends on the use-case