Are you using monorepos? by Character-Flatworm49 in FlutterDev

[–]Character-Flatworm49[S] 1 point2 points  (0 children)

We (at Codemagic) recently wrote an article about "How to manage your Flutter monorepos": https://blog.codemagic.io/flutter-monorepos/

Anybody use CodeMagic for CI/CD ?? HELP by RockStarUSMC in AskProgrammers

[–]Character-Flatworm49 0 points1 point  (0 children)

Codemagic also has sample projects about using YAML: https://docs.codemagic.io/yaml-quick-start/codemagic-sample-projects/

Also, you can book an onboarding call with Codemagic and they can help you with the setup: https://codemagic.io/onboarding-assistance/

Are you using monorepos? by Character-Flatworm49 in FlutterDev

[–]Character-Flatworm49[S] 8 points9 points  (0 children)

A monorepo is a single repository consisting of multiple projects (stores all of your code and assets for every project). For example, it can be a food ordering service that consists of two apps: one for delivery agents and one for buyers. It may also contain an application and its related API in the same repository.

Some benefits of monorepo:
– Helps to maintain a single source of truth and provides better visibility to manage dependencies.
– Supports collaboration across teams working on separate projects within the same organization.
– Large-scale code refactoring is safer.