You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should investigate how we can add some samples of various patterns that could be used to orchestrate projects and services from multiple repos rather than mono-repo. It's common to split up service ownership by team or simply to put them in their own repos.
Some patterns I imagine might emerge:
git sub-modules for service repos and a parent repo with the .sln file and AppHost project, if you want to build and run all services locally
Services published as container images that are then composed into an AppHost project as containers, if you don't want to build the services locally but you do want to run them locally
From microsoft/aspire#829
We should investigate how we can add some samples of various patterns that could be used to orchestrate projects and services from multiple repos rather than mono-repo. It's common to split up service ownership by team or simply to put them in their own repos.
Some patterns I imagine might emerge: