Who develops with a mono repo vs having their code...
# random
r
Who develops with a mono repo vs having their code split between multiple projects?
a
Depends on the project's coupling, number of developers and the codebase size. But decoupled is almost always better.
j
I usually start with a mono repo with all product's services/libraries split in modules. When it becomes big you may or may not extract modules to standalone repos. For me, this is fast to start with, yet easy to migrate to one repo per module (services).
r
Thanks