-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #923 from kamadorueda/main
feat(doc): #919 architecture diagram
- Loading branch information
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<!-- | ||
SPDX-FileCopyrightText: 2022 Fluid Attacks and Makes contributors | ||
SPDX-License-Identifier: MIT | ||
--> | ||
|
||
# Architecture | ||
|
||
```mermaid | ||
flowchart TB | ||
inputs[Other inputs] | ||
makes_cli[Makes CLI] | ||
makes_framework[Makes Framework] | ||
slsa_provenance[SLSA Provenance Attestation] | ||
nix_derivation[Nix Derivation SBOM] | ||
nix_store_path[Nix Store Path - Built artifact] | ||
nixpkgs_collection[Nixpkgs Software Packages] | ||
nixpkgs_module_system[Nixpkgs Module System] | ||
consumer[Consumer] | ||
developer[Developer] | ||
project[Project] | ||
git_repo[Git Repository] | ||
ci_cd_code[CI/CD as code] | ||
inputs[Other inputs] | ||
consumer -- uses --> makes_cli | ||
ci_cd_code -- uses --> nixpkgs_collection | ||
ci_cd_code -- uses --> makes_framework | ||
ci_cd_code -- uses --> inputs | ||
developer -- uses --> makes_cli | ||
developer -- maintains --> project | ||
git_repo -- is fetched by --> makes_cli | ||
git_repo -- contains --> ci_cd_code | ||
makes_cli -- uses --> nix | ||
makes_cli -- produces --> slsa_provenance | ||
makes_framework -- uses --> nixpkgs_module_system | ||
nix -- produces --> nix_derivation | ||
nix -- produces --> nix_store_path | ||
project -- has --> git_repo | ||
``` |