Hello! Trying to plan for my team's usage of Prefect/ControlFlow from a pretty green field state. Ar...
m
Hello! Trying to plan for my team's usage of Prefect/ControlFlow from a pretty green field state. Are there any docs around best practices for how to organize Flows and whatnot in Github? Mono repo? Split repo? Any recommendations would be great.
b
Hey Mike! IMO, monorepos are pretty standard, but that ultimately depends on the projects you're working on!
If you want an example of a monorepo, here's one for you that has a few deployment tips and tricks.
I'd encourage you to think about your Ci/CD process since you're in a green field state, too. Here's a guide that will walk you through how to leverage github actions to build/push images to docker hub whenever you update your code in
main
.
m
Thank you!