@archinsight/cli 3.0.0-snapshot.7 → 3.0.0
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/README.md +20 -4
- package/build/index.js +6965 -5416
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -63,6 +63,7 @@ The generic target writes a runtime-neutral guide:
|
|
|
63
63
|
references/
|
|
64
64
|
modeling.md
|
|
65
65
|
syntax.md
|
|
66
|
+
layered-architecture.md
|
|
66
67
|
c1-context.md
|
|
67
68
|
c2-containers.md
|
|
68
69
|
c3-components.md
|
|
@@ -76,11 +77,20 @@ The generic target writes a runtime-neutral guide:
|
|
|
76
77
|
.core/
|
|
77
78
|
*.ai
|
|
78
79
|
examples/
|
|
80
|
+
layered-architecture.ai
|
|
79
81
|
c1-context.ai
|
|
80
82
|
c2-containers.ai
|
|
81
83
|
c3-components.ai
|
|
82
84
|
c4-deployment-framework.ai
|
|
85
|
+
c4-deployment-infrastructure.ai
|
|
83
86
|
c4-deployment.ai
|
|
87
|
+
c4-private-gateway/
|
|
88
|
+
deployment-framework.ai
|
|
89
|
+
source-infra.ai
|
|
90
|
+
source-system.ai
|
|
91
|
+
target-infra.ai
|
|
92
|
+
target-system.ai
|
|
93
|
+
external.ai
|
|
84
94
|
c2-containers.aiq
|
|
85
95
|
builtin-views/
|
|
86
96
|
no-filter.aiq
|
|
@@ -120,10 +130,10 @@ avoid guessing Insight syntax from other architecture DSLs, inspect project
|
|
|
120
130
|
structure before broad edits or imports, read bundled core language sources for
|
|
121
131
|
built-in types/presentations/projections, describe systems layer by layer, and
|
|
122
132
|
write custom `.aiq` diagram queries with the supported Cypher-style subset.
|
|
123
|
-
The bundled
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
paths.
|
|
133
|
+
The bundled deployment reference explains context-owned profiles with
|
|
134
|
+
`appliesTo: <deployment> from <environment>`, element placement through those
|
|
135
|
+
profiles, and wire-level `uses` restricted to `NetworkConnection` descendants.
|
|
136
|
+
Its examples also cover projection rules for storage and physical network paths.
|
|
127
137
|
|
|
128
138
|
## Output Contract
|
|
129
139
|
|
|
@@ -180,3 +190,9 @@ npm --prefix archinsight-cli run publish:npm
|
|
|
180
190
|
|
|
181
191
|
Before publishing, update the package version in `package.json`, commit the
|
|
182
192
|
change, and make sure the working tree is clean.
|
|
193
|
+
|
|
194
|
+
## License
|
|
195
|
+
|
|
196
|
+
Copyright 2021-2026 Alexey Zaytsev
|
|
197
|
+
|
|
198
|
+
Licensed under the Apache License, Version 2.0. See [LICENSE](LICENSE).
|