Nua Architecture¶
C4 Diagrams¶
Context diagram (level 1)¶
Container diagrams (level 2)¶
Components¶
The main components are:
- The builder
- The orchestrator
Sub-project structure¶
The Nua project is (currently) structured as as a monorepo with several sub-projects.
The subprojects are structured as follows:
nua-lib
: common code shared by all subprojects.nua-agent
: the build agent that runs in the build container.nua-build
: the builder that orchestrates the build.nua-orchestrator
: the orchestrator.nua-server
: the web UI.
The dependencies between the subprojects are as follows:
nua-lib
doesn’t depend on any other subproject.nua-agent
should depends only onnua-lib
.nua-build
should depends only onnua-lib
.nua-orchestrator
should depends only onnua-lib
.nua-server
doesn’t depend on any other subproject (could depend onnua-lib
). Also could be merged withnua-orchestrator
someday.nua-cli
doesn’t depend on any other subproject (could depend onnua-lib
).