t44 0.4.0-rc.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.dco-signatures +9 -0
- package/.github/workflows/dco.yml +12 -0
- package/.o/GordianOpenIntegrity-CurrentLifehash.svg +1026 -0
- package/.o/GordianOpenIntegrity-InceptionLifehash.svg +1026 -0
- package/.o/GordianOpenIntegrity.yaml +25 -0
- package/.o/assets/Hero-Terminal44-v0.jpeg +0 -0
- package/DCO.md +34 -0
- package/LICENSE.md +203 -0
- package/README.md +183 -0
- package/bin/activate +36 -0
- package/bin/activate.ts +30 -0
- package/bin/postinstall.sh +19 -0
- package/bin/shell +27 -0
- package/bin/t44 +27 -0
- package/caps/ConfigSchemaStruct.ts +55 -0
- package/caps/Home.ts +51 -0
- package/caps/HomeRegistry.ts +313 -0
- package/caps/HomeRegistryFile.ts +144 -0
- package/caps/JsonSchemas.ts +220 -0
- package/caps/OpenApiSchema.ts +67 -0
- package/caps/PackageDescriptor.ts +88 -0
- package/caps/ProjectCatalogs.ts +153 -0
- package/caps/ProjectDeployment.ts +363 -0
- package/caps/ProjectDevelopment.ts +257 -0
- package/caps/ProjectPublishing.ts +522 -0
- package/caps/ProjectRack.ts +155 -0
- package/caps/ProjectRepository.ts +322 -0
- package/caps/RootKey.ts +219 -0
- package/caps/SigningKey.ts +243 -0
- package/caps/WorkspaceCli.ts +442 -0
- package/caps/WorkspaceConfig.ts +268 -0
- package/caps/WorkspaceConfig.yaml +71 -0
- package/caps/WorkspaceConfigFile.ts +799 -0
- package/caps/WorkspaceConnection.ts +249 -0
- package/caps/WorkspaceEntityConfig.ts +78 -0
- package/caps/WorkspaceEntityConfig.v0.ts +77 -0
- package/caps/WorkspaceEntityFact.ts +218 -0
- package/caps/WorkspaceInfo.ts +595 -0
- package/caps/WorkspaceInit.ts +30 -0
- package/caps/WorkspaceKey.ts +338 -0
- package/caps/WorkspaceModel.ts +373 -0
- package/caps/WorkspaceProjects.ts +636 -0
- package/caps/WorkspacePrompt.ts +406 -0
- package/caps/WorkspaceShell.sh +39 -0
- package/caps/WorkspaceShell.ts +104 -0
- package/caps/WorkspaceShell.yaml +64 -0
- package/caps/WorkspaceShellCli.ts +109 -0
- package/caps/WorkspaceTest.ts +167 -0
- package/caps/providers/README.md +2 -0
- package/caps/providers/bunny.net/ProjectDeployment.ts +327 -0
- package/caps/providers/bunny.net/api-pull.test.ts +319 -0
- package/caps/providers/bunny.net/api-pull.ts +164 -0
- package/caps/providers/bunny.net/api-storage.test.ts +168 -0
- package/caps/providers/bunny.net/api-storage.ts +248 -0
- package/caps/providers/bunny.net/api.ts +95 -0
- package/caps/providers/dynadot.com/ProjectDeployment.ts +202 -0
- package/caps/providers/dynadot.com/api-domains.test.ts +224 -0
- package/caps/providers/dynadot.com/api-domains.ts +169 -0
- package/caps/providers/dynadot.com/api-restful-v1.test.ts +190 -0
- package/caps/providers/dynadot.com/api-restful-v1.ts +94 -0
- package/caps/providers/dynadot.com/api-restful-v2.test.ts +200 -0
- package/caps/providers/dynadot.com/api-restful-v2.ts +94 -0
- package/caps/providers/git-scm.com/ProjectPublishing.ts +654 -0
- package/caps/providers/github.com/ProjectPublishing.ts +118 -0
- package/caps/providers/github.com/api.ts +115 -0
- package/caps/providers/npmjs.com/ProjectPublishing.ts +536 -0
- package/caps/providers/semver.org/ProjectPublishing.ts +286 -0
- package/caps/providers/vercel.com/ProjectDeployment.ts +326 -0
- package/caps/providers/vercel.com/api.test.ts +67 -0
- package/caps/providers/vercel.com/api.ts +132 -0
- package/caps/providers/vercel.com/bun.lock +194 -0
- package/caps/providers/vercel.com/package.json +10 -0
- package/caps/providers/vercel.com/project.test.ts +108 -0
- package/caps/providers/vercel.com/project.ts +150 -0
- package/caps/providers/vercel.com/tsconfig.json +28 -0
- package/docs/Overview.drawio +248 -0
- package/docs/Overview.svg +4 -0
- package/lib/crypto.ts +53 -0
- package/lib/key.ts +365 -0
- package/lib/schema-console-renderer.ts +181 -0
- package/lib/schema-resolver.ts +349 -0
- package/lib/ucan.ts +137 -0
- package/package.json +101 -0
- package/structs/HomeRegistry.ts +55 -0
- package/structs/HomeRegistryConfig.ts +56 -0
- package/structs/ProjectCatalogsConfig.ts +53 -0
- package/structs/ProjectDeploymentConfig.ts +56 -0
- package/structs/ProjectDeploymentFact.ts +106 -0
- package/structs/ProjectPublishingFact.ts +68 -0
- package/structs/ProjectRack.ts +51 -0
- package/structs/ProjectRackConfig.ts +56 -0
- package/structs/RepositoryOriginDescriptor.ts +51 -0
- package/structs/RootKeyConfig.ts +64 -0
- package/structs/SigningKeyConfig.ts +64 -0
- package/structs/Workspace.ts +56 -0
- package/structs/WorkspaceCatalogs.ts +56 -0
- package/structs/WorkspaceCliConfig.ts +53 -0
- package/structs/WorkspaceConfig.ts +64 -0
- package/structs/WorkspaceConfigFile.ts +50 -0
- package/structs/WorkspaceConfigFileMeta.ts +70 -0
- package/structs/WorkspaceKey.ts +55 -0
- package/structs/WorkspaceKeyConfig.ts +56 -0
- package/structs/WorkspaceMappingsConfig.ts +56 -0
- package/structs/WorkspaceProject.ts +104 -0
- package/structs/WorkspaceProjectsConfig.ts +67 -0
- package/structs/WorkspacePublishingConfig.ts +65 -0
- package/structs/WorkspaceShellConfig.ts +83 -0
- package/structs/providers/README.md +2 -0
- package/structs/providers/bunny.net/PullZoneFact.ts +55 -0
- package/structs/providers/bunny.net/PullZoneListFact.ts +55 -0
- package/structs/providers/bunny.net/StorageZoneFact.ts +55 -0
- package/structs/providers/bunny.net/StorageZoneListFact.ts +55 -0
- package/structs/providers/bunny.net/WorkspaceConnectionConfig.ts +43 -0
- package/structs/providers/dynadot.com/DomainFact.ts +46 -0
- package/structs/providers/dynadot.com/WorkspaceConnectionConfig.ts +54 -0
- package/structs/providers/git-scm.com/ProjectPublishingFact.ts +46 -0
- package/structs/providers/github.com/ProjectPublishingFact.ts +46 -0
- package/structs/providers/github.com/WorkspaceConnectionConfig.ts +43 -0
- package/structs/providers/npmjs.com/ProjectPublishingFact.ts +46 -0
- package/structs/providers/vercel.com/ProjectDeploymentFact.ts +55 -0
- package/structs/providers/vercel.com/WorkspaceConnectionConfig.ts +49 -0
- package/tests/01-Lifecycle/main.test.ts +173 -0
- package/tsconfig.json +28 -0
- package/workspace-rt.ts +134 -0
- package/workspace.yaml +3 -0
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
<mxfile host="Electron" agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/29.3.0 Chrome/140.0.7339.249 Electron/38.7.2 Safari/537.36" version="29.3.0">
|
|
2
|
+
<diagram name="Page-1" id="aidB9f1QkH5sa6P63Yxt">
|
|
3
|
+
<mxGraphModel dx="1309" dy="915" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1100" pageHeight="850" math="0" shadow="0">
|
|
4
|
+
<root>
|
|
5
|
+
<mxCell id="0" />
|
|
6
|
+
<mxCell id="1" parent="0" />
|
|
7
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-69" parent="1" style="rounded=0;whiteSpace=wrap;html=1;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;strokeColor=none;" value="" vertex="1">
|
|
8
|
+
<mxGeometry height="720" width="1030" x="10" y="10" as="geometry" />
|
|
9
|
+
</mxCell>
|
|
10
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-43" parent="1" style="rounded=0;whiteSpace=wrap;html=1;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;strokeWidth=2;" value="" vertex="1">
|
|
11
|
+
<mxGeometry height="660" width="1010" x="20" y="20" as="geometry" />
|
|
12
|
+
</mxCell>
|
|
13
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-45" edge="1" parent="1" source="DcQkaO7AGQ5R7fWngdzd-10" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;strokeColor=#6C8EBF;strokeWidth=2;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" target="DcQkaO7AGQ5R7fWngdzd-44">
|
|
14
|
+
<mxGeometry relative="1" as="geometry">
|
|
15
|
+
<Array as="points">
|
|
16
|
+
<mxPoint x="800" y="610" />
|
|
17
|
+
</Array>
|
|
18
|
+
<mxPoint x="310" y="620" as="targetPoint" />
|
|
19
|
+
</mxGeometry>
|
|
20
|
+
</mxCell>
|
|
21
|
+
<mxCell id="Y4DV88htsJWIBYXxFygQ-7" connectable="0" parent="DcQkaO7AGQ5R7fWngdzd-45" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" value="structure" vertex="1">
|
|
22
|
+
<mxGeometry relative="1" x="0.9408" y="2" as="geometry">
|
|
23
|
+
<mxPoint as="offset" />
|
|
24
|
+
</mxGeometry>
|
|
25
|
+
</mxCell>
|
|
26
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-2" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" value="Ed25519 Private Key" vertex="1">
|
|
27
|
+
<mxGeometry height="20" width="140" x="40" y="700" as="geometry" />
|
|
28
|
+
</mxCell>
|
|
29
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-3" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" value="WorkspaceConfig" vertex="1">
|
|
30
|
+
<mxGeometry height="20" width="140" x="40" y="600" as="geometry" />
|
|
31
|
+
</mxCell>
|
|
32
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-5" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" value="WorkspaceCli" vertex="1">
|
|
33
|
+
<mxGeometry height="20" width="140" x="40" y="570" as="geometry" />
|
|
34
|
+
</mxCell>
|
|
35
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-54" edge="1" parent="1" source="DcQkaO7AGQ5R7fWngdzd-10" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" target="DcQkaO7AGQ5R7fWngdzd-3">
|
|
36
|
+
<mxGeometry relative="1" as="geometry" />
|
|
37
|
+
</mxCell>
|
|
38
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-10" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" value="workspace.yaml" vertex="1">
|
|
39
|
+
<mxGeometry height="20" width="140" x="230" y="600" as="geometry" />
|
|
40
|
+
</mxCell>
|
|
41
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-57" edge="1" parent="1" source="DcQkaO7AGQ5R7fWngdzd-11" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" target="DcQkaO7AGQ5R7fWngdzd-5">
|
|
42
|
+
<mxGeometry relative="1" as="geometry" />
|
|
43
|
+
</mxCell>
|
|
44
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-11" parent="1" style="rounded=0;whiteSpace=wrap;html=1;" value="bin: <b>t44</b>" vertex="1">
|
|
45
|
+
<mxGeometry height="20" width="140" x="230" y="570" as="geometry" />
|
|
46
|
+
</mxCell>
|
|
47
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-13" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" value="dev" vertex="1">
|
|
48
|
+
<mxGeometry height="20" width="140" x="40" y="320" as="geometry" />
|
|
49
|
+
</mxCell>
|
|
50
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-14" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" value="push" vertex="1">
|
|
51
|
+
<mxGeometry height="20" width="140" x="40" y="380" as="geometry" />
|
|
52
|
+
</mxCell>
|
|
53
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-15" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" value="deploy" vertex="1">
|
|
54
|
+
<mxGeometry height="20" width="140" x="40" y="200" as="geometry" />
|
|
55
|
+
</mxCell>
|
|
56
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-16" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" value="activate" vertex="1">
|
|
57
|
+
<mxGeometry height="20" width="140" x="40" y="500" as="geometry" />
|
|
58
|
+
</mxCell>
|
|
59
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-17" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" value="ProjectDeployment" vertex="1">
|
|
60
|
+
<mxGeometry height="20" width="400" x="180" y="200" as="geometry" />
|
|
61
|
+
</mxCell>
|
|
62
|
+
<mxCell id="ZHSYFcF9Pkar7pOJ5p8U-4" edge="1" parent="1" source="DcQkaO7AGQ5R7fWngdzd-19" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0;entryDx=0;entryDy=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" target="ZHSYFcF9Pkar7pOJ5p8U-3">
|
|
63
|
+
<mxGeometry relative="1" as="geometry" />
|
|
64
|
+
</mxCell>
|
|
65
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-19" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" value="ProjectPublishing" vertex="1">
|
|
66
|
+
<mxGeometry height="20" width="140" x="180" y="380" as="geometry" />
|
|
67
|
+
</mxCell>
|
|
68
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-20" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" value="WorkspaceShell" vertex="1">
|
|
69
|
+
<mxGeometry height="20" width="140" x="180" y="500" as="geometry" />
|
|
70
|
+
</mxCell>
|
|
71
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-65" edge="1" parent="1" source="DcQkaO7AGQ5R7fWngdzd-24" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=1;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;strokeColor=#CC0066;strokeWidth=2;" target="DcQkaO7AGQ5R7fWngdzd-41">
|
|
72
|
+
<mxGeometry relative="1" as="geometry">
|
|
73
|
+
<Array as="points">
|
|
74
|
+
<mxPoint x="630" y="330" />
|
|
75
|
+
<mxPoint x="630" y="100" />
|
|
76
|
+
</Array>
|
|
77
|
+
</mxGeometry>
|
|
78
|
+
</mxCell>
|
|
79
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-66" connectable="0" parent="DcQkaO7AGQ5R7fWngdzd-65" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontColor=#CC0066;fontStyle=1" value="Realtime<br>Updates" vertex="1">
|
|
80
|
+
<mxGeometry relative="1" x="0.2967" y="3" as="geometry">
|
|
81
|
+
<mxPoint y="-23" as="offset" />
|
|
82
|
+
</mxGeometry>
|
|
83
|
+
</mxCell>
|
|
84
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-24" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" value="ProjectDevelopment" vertex="1">
|
|
85
|
+
<mxGeometry height="20" width="400" x="180" y="320" as="geometry" />
|
|
86
|
+
</mxCell>
|
|
87
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-29" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" value="Projected Resource and Runtime Namespace" vertex="1">
|
|
88
|
+
<mxGeometry height="40" width="260" x="670" y="180" as="geometry" />
|
|
89
|
+
</mxCell>
|
|
90
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-30" parent="1" style="rounded=0;whiteSpace=wrap;html=1;" value="Imperative code execution" vertex="1">
|
|
91
|
+
<mxGeometry height="60" width="170" x="300" y="230" as="geometry" />
|
|
92
|
+
</mxCell>
|
|
93
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-31" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f5f5f5;fontColor=#333333;strokeColor=#666666;" value="turbo" vertex="1">
|
|
94
|
+
<mxGeometry height="20" width="290" x="180" y="290" as="geometry" />
|
|
95
|
+
</mxCell>
|
|
96
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-32" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" value="Statically linked component model" vertex="1">
|
|
97
|
+
<mxGeometry height="20" width="260" x="670" y="270" as="geometry" />
|
|
98
|
+
</mxCell>
|
|
99
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-33" parent="1" style="rounded=0;whiteSpace=wrap;html=1;" value="Build processes" vertex="1">
|
|
100
|
+
<mxGeometry height="60" width="120" x="180" y="230" as="geometry" />
|
|
101
|
+
</mxCell>
|
|
102
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-36" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" value="Generated code<br>components" vertex="1">
|
|
103
|
+
<mxGeometry height="40" width="130" x="670" y="230" as="geometry" />
|
|
104
|
+
</mxCell>
|
|
105
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-38" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" value="Optimized runtime<br>bundles" vertex="1">
|
|
106
|
+
<mxGeometry height="40" width="130" x="800" y="230" as="geometry" />
|
|
107
|
+
</mxCell>
|
|
108
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-42" edge="1" parent="1" source="DcQkaO7AGQ5R7fWngdzd-40" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;strokeWidth=2;" target="DcQkaO7AGQ5R7fWngdzd-41">
|
|
109
|
+
<mxGeometry relative="1" as="geometry">
|
|
110
|
+
<Array as="points">
|
|
111
|
+
<mxPoint x="960" y="90" />
|
|
112
|
+
</Array>
|
|
113
|
+
</mxGeometry>
|
|
114
|
+
</mxCell>
|
|
115
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-72" connectable="0" parent="DcQkaO7AGQ5R7fWngdzd-42" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontStyle=1" value="Fast catalog distribution" vertex="1">
|
|
116
|
+
<mxGeometry relative="1" x="0.2435" y="-2" as="geometry">
|
|
117
|
+
<mxPoint x="46" y="2" as="offset" />
|
|
118
|
+
</mxGeometry>
|
|
119
|
+
</mxCell>
|
|
120
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-40" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" value="IPFS" vertex="1">
|
|
121
|
+
<mxGeometry height="130" width="60" x="930" y="180" as="geometry" />
|
|
122
|
+
</mxCell>
|
|
123
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-41" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" value="Published Runtime Catalogs" vertex="1">
|
|
124
|
+
<mxGeometry height="20" width="400" x="180" y="80" as="geometry" />
|
|
125
|
+
</mxCell>
|
|
126
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-44" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" value="Private data spaces model" vertex="1">
|
|
127
|
+
<mxGeometry height="20" width="260" x="670" y="290" as="geometry" />
|
|
128
|
+
</mxCell>
|
|
129
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-49" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" value="CredentialsStore" vertex="1">
|
|
130
|
+
<mxGeometry height="20" width="140" x="40" y="630" as="geometry" />
|
|
131
|
+
</mxCell>
|
|
132
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-70" edge="1" parent="1" source="DcQkaO7AGQ5R7fWngdzd-51" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" target="DcQkaO7AGQ5R7fWngdzd-37">
|
|
133
|
+
<mxGeometry relative="1" as="geometry" />
|
|
134
|
+
</mxCell>
|
|
135
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-71" connectable="0" parent="DcQkaO7AGQ5R7fWngdzd-70" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" value="Slow CI / CD process" vertex="1">
|
|
136
|
+
<mxGeometry relative="1" x="-0.0286" y="-1" as="geometry">
|
|
137
|
+
<mxPoint x="-1" y="1" as="offset" />
|
|
138
|
+
</mxGeometry>
|
|
139
|
+
</mxCell>
|
|
140
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-51" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" value="Connections" vertex="1">
|
|
141
|
+
<mxGeometry height="20" width="400" x="180" y="180" as="geometry" />
|
|
142
|
+
</mxCell>
|
|
143
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-52" edge="1" parent="1" source="DcQkaO7AGQ5R7fWngdzd-2" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;strokeColor=#6C8EBF;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;strokeWidth=2;" target="DcQkaO7AGQ5R7fWngdzd-49">
|
|
144
|
+
<mxGeometry relative="1" as="geometry">
|
|
145
|
+
<Array as="points">
|
|
146
|
+
<mxPoint x="110" y="660" />
|
|
147
|
+
<mxPoint x="110" y="660" />
|
|
148
|
+
</Array>
|
|
149
|
+
<mxPoint x="440" y="1090" as="sourcePoint" />
|
|
150
|
+
<mxPoint x="120" y="640" as="targetPoint" />
|
|
151
|
+
</mxGeometry>
|
|
152
|
+
</mxCell>
|
|
153
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-1" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" value="WorkspaceKey" vertex="1">
|
|
154
|
+
<mxGeometry height="20" width="140" x="40" y="670" as="geometry" />
|
|
155
|
+
</mxCell>
|
|
156
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-58" parent="1" style="text;html=1;whiteSpace=wrap;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;rounded=0;fontStyle=1" value="Workspace Commands" vertex="1">
|
|
157
|
+
<mxGeometry height="20" width="140" x="40" y="535" as="geometry" />
|
|
158
|
+
</mxCell>
|
|
159
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-60" edge="1" parent="1" source="DcQkaO7AGQ5R7fWngdzd-59" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" target="DcQkaO7AGQ5R7fWngdzd-11">
|
|
160
|
+
<mxGeometry relative="1" as="geometry" />
|
|
161
|
+
</mxCell>
|
|
162
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-59" parent="1" style="text;html=1;whiteSpace=wrap;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;rounded=0;fontStyle=1;fontColor=#CC0066;" value="Run commands" vertex="1">
|
|
163
|
+
<mxGeometry height="20" width="110" x="425" y="570" as="geometry" />
|
|
164
|
+
</mxCell>
|
|
165
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-34" edge="1" parent="1" style="shape=flexArrow;endArrow=classic;html=1;rounded=0;endWidth=24;endSize=13;width=38;fillColor=#d5e8d4;strokeColor=#82b366;" value="">
|
|
166
|
+
<mxGeometry height="50" relative="1" width="50" as="geometry">
|
|
167
|
+
<mxPoint x="487" y="270" as="sourcePoint" />
|
|
168
|
+
<mxPoint x="657" y="270" as="targetPoint" />
|
|
169
|
+
</mxGeometry>
|
|
170
|
+
</mxCell>
|
|
171
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-39" connectable="0" parent="DcQkaO7AGQ5R7fWngdzd-34" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=12;labelBackgroundColor=none;" value="Projection through<br>instrumentation" vertex="1">
|
|
172
|
+
<mxGeometry relative="1" x="0.2706" y="3" as="geometry">
|
|
173
|
+
<mxPoint x="-38" y="1" as="offset" />
|
|
174
|
+
</mxGeometry>
|
|
175
|
+
</mxCell>
|
|
176
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-68" edge="1" parent="1" source="DcQkaO7AGQ5R7fWngdzd-67" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.75;entryY=1;entryDx=0;entryDy=0;" target="DcQkaO7AGQ5R7fWngdzd-24">
|
|
177
|
+
<mxGeometry relative="1" as="geometry" />
|
|
178
|
+
</mxCell>
|
|
179
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-67" parent="1" style="text;html=1;whiteSpace=wrap;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;rounded=0;fontStyle=1;fontColor=#CC0066;" value="Makes source code changes" vertex="1">
|
|
180
|
+
<mxGeometry height="20" width="230" x="365" y="535" as="geometry" />
|
|
181
|
+
</mxCell>
|
|
182
|
+
<mxCell id="Y4DV88htsJWIBYXxFygQ-1" parent="1" style="text;html=1;whiteSpace=wrap;strokeColor=none;fillColor=none;align=right;verticalAlign=middle;rounded=0;" value="(c) 2026 <a href="https://christoph.diy">Christoph.diy</a>&nbsp;CC BY" vertex="1">
|
|
183
|
+
<mxGeometry height="30" width="185" x="830" y="20" as="geometry" />
|
|
184
|
+
</mxCell>
|
|
185
|
+
<mxCell id="Y4DV88htsJWIBYXxFygQ-2" parent="1" style="text;html=1;whiteSpace=wrap;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;rounded=0;" value="<b>Terminal44 Workspace Foundation - v0.2</b>" vertex="1">
|
|
186
|
+
<mxGeometry height="30" width="400" x="180" y="20" as="geometry" />
|
|
187
|
+
</mxCell>
|
|
188
|
+
<mxCell id="Y4DV88htsJWIBYXxFygQ-3" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" value="query" vertex="1">
|
|
189
|
+
<mxGeometry height="20" width="140" x="40" y="440" as="geometry" />
|
|
190
|
+
</mxCell>
|
|
191
|
+
<mxCell id="Y4DV88htsJWIBYXxFygQ-4" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" value="WorkspaceModel" vertex="1">
|
|
192
|
+
<mxGeometry height="20" width="140" x="180" y="440" as="geometry" />
|
|
193
|
+
</mxCell>
|
|
194
|
+
<mxCell id="Y4DV88htsJWIBYXxFygQ-5" edge="1" parent="1" source="DcQkaO7AGQ5R7fWngdzd-44" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0.5;entryDx=0;entryDy=0;jumpStyle=arc;strokeColor=#999999;" target="Y4DV88htsJWIBYXxFygQ-4">
|
|
195
|
+
<mxGeometry relative="1" as="geometry">
|
|
196
|
+
<Array as="points">
|
|
197
|
+
<mxPoint x="730" y="450" />
|
|
198
|
+
</Array>
|
|
199
|
+
</mxGeometry>
|
|
200
|
+
</mxCell>
|
|
201
|
+
<mxCell id="Y4DV88htsJWIBYXxFygQ-6" connectable="0" parent="Y4DV88htsJWIBYXxFygQ-5" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" value="read" vertex="1">
|
|
202
|
+
<mxGeometry relative="1" x="0.0776" as="geometry">
|
|
203
|
+
<mxPoint x="156" y="-118" as="offset" />
|
|
204
|
+
</mxGeometry>
|
|
205
|
+
</mxCell>
|
|
206
|
+
<mxCell id="Y4DV88htsJWIBYXxFygQ-8" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" value="info" vertex="1">
|
|
207
|
+
<mxGeometry height="20" width="140" x="40" y="470" as="geometry" />
|
|
208
|
+
</mxCell>
|
|
209
|
+
<mxCell id="Y4DV88htsJWIBYXxFygQ-9" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" value="WorkspaceInfo" vertex="1">
|
|
210
|
+
<mxGeometry height="20" width="140" x="180" y="470" as="geometry" />
|
|
211
|
+
</mxCell>
|
|
212
|
+
<mxCell id="Y4DV88htsJWIBYXxFygQ-10" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" value="pull" vertex="1">
|
|
213
|
+
<mxGeometry height="20" width="140" x="40" y="410" as="geometry" />
|
|
214
|
+
</mxCell>
|
|
215
|
+
<mxCell id="Y4DV88htsJWIBYXxFygQ-11" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" value="ProjectUpdating" vertex="1">
|
|
216
|
+
<mxGeometry height="20" width="140" x="180" y="410" as="geometry" />
|
|
217
|
+
</mxCell>
|
|
218
|
+
<mxCell id="Y4DV88htsJWIBYXxFygQ-12" parent="1" style="text;html=1;whiteSpace=wrap;strokeColor=none;fillColor=none;align=right;verticalAlign=middle;rounded=0;" value="Private Data Space" vertex="1">
|
|
219
|
+
<mxGeometry height="30" width="140" x="870" y="650" as="geometry" />
|
|
220
|
+
</mxCell>
|
|
221
|
+
<mxCell id="Y4DV88htsJWIBYXxFygQ-13" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" value="Running Components" vertex="1">
|
|
222
|
+
<mxGeometry height="20" width="400" x="180" y="60" as="geometry" />
|
|
223
|
+
</mxCell>
|
|
224
|
+
<mxCell id="DcQkaO7AGQ5R7fWngdzd-37" parent="1" style="rounded=0;whiteSpace=wrap;html=1;" value="Provisioned Runtime Containers &amp; Resources" vertex="1">
|
|
225
|
+
<mxGeometry height="20" width="400" x="180" y="100" as="geometry" />
|
|
226
|
+
</mxCell>
|
|
227
|
+
<mxCell id="ZHSYFcF9Pkar7pOJ5p8U-1" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" value="test" vertex="1">
|
|
228
|
+
<mxGeometry height="20" width="140" x="40" y="350" as="geometry" />
|
|
229
|
+
</mxCell>
|
|
230
|
+
<mxCell id="ZHSYFcF9Pkar7pOJ5p8U-2" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" value="ProjectTesting" vertex="1">
|
|
231
|
+
<mxGeometry height="20" width="140" x="180" y="350" as="geometry" />
|
|
232
|
+
</mxCell>
|
|
233
|
+
<mxCell id="ZHSYFcF9Pkar7pOJ5p8U-3" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f5f5f5;fontColor=#333333;strokeColor=#666666;" value="Source Code" vertex="1">
|
|
234
|
+
<mxGeometry height="20" width="110" x="350" y="404" as="geometry" />
|
|
235
|
+
</mxCell>
|
|
236
|
+
<mxCell id="ZHSYFcF9Pkar7pOJ5p8U-5" edge="1" parent="1" source="ZHSYFcF9Pkar7pOJ5p8U-3" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0.5;entryDx=0;entryDy=0;exitX=0;exitY=0;exitDx=0;exitDy=0;" target="Y4DV88htsJWIBYXxFygQ-11">
|
|
237
|
+
<mxGeometry relative="1" as="geometry">
|
|
238
|
+
<mxPoint x="320" y="440" as="sourcePoint" />
|
|
239
|
+
<mxPoint x="350" y="443" as="targetPoint" />
|
|
240
|
+
</mxGeometry>
|
|
241
|
+
</mxCell>
|
|
242
|
+
<mxCell id="ZHSYFcF9Pkar7pOJ5p8U-6" parent="1" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f5f5f5;fontColor=#333333;strokeColor=#666666;" value="Dist Packages" vertex="1">
|
|
243
|
+
<mxGeometry height="20" width="110" x="350" y="384" as="geometry" />
|
|
244
|
+
</mxCell>
|
|
245
|
+
</root>
|
|
246
|
+
</mxGraphModel>
|
|
247
|
+
</diagram>
|
|
248
|
+
</mxfile>
|