@aopslabs/aops 0.3.1 → 0.3.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/README.md +14 -13
- package/THIRD_PARTY_NOTICES +16169 -0
- package/dist/commands/community-server.js +5 -2
- package/dist/lib/community-diagnostic.js +1 -1
- package/dist/lib/community-native-lifecycle.js +71 -26
- package/dist/lib/community-native-postgres.js +5 -15
- package/dist/lib/setup-readiness.js +2 -2
- package/native/tui/win32-x64/aops-tui.exe +0 -0
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# @aopslabs/aops
|
|
2
2
|
|
|
3
|
-
AOPS CLI and terminal setup application.
|
|
4
|
-
|
|
5
|
-
Server.
|
|
3
|
+
AOPS CLI and terminal setup application. The package brings the exact compatible
|
|
4
|
+
local Server runtime, but remote-only users can use the CLI without configuring
|
|
5
|
+
or starting that local Server.
|
|
6
6
|
|
|
7
7
|
```sh
|
|
8
8
|
npm install --global @aopslabs/aops
|
|
@@ -16,11 +16,9 @@ aops cockpit
|
|
|
16
16
|
aops assets
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
npm install --global @aopslabs/aops @aopslabs/aops-server
|
|
23
|
-
```
|
|
19
|
+
That one command also installs the exact compatible `@aopslabs/aops-server`
|
|
20
|
+
runtime. npm installation itself never starts services or runs migrations;
|
|
21
|
+
`aops setup init` is the explicit first-time setup boundary.
|
|
24
22
|
|
|
25
23
|
The source repositories remain private. Customer-required runtime dependencies
|
|
26
24
|
may also be published as public npm packages so ordinary installation never
|
|
@@ -166,10 +164,11 @@ Eligible DDL runs transactionally under a non-waiting migration lock and the
|
|
|
166
164
|
live semantic schema is read back before success. Optional audit-write failure
|
|
167
165
|
does not invalidate that result.
|
|
168
166
|
|
|
169
|
-
The CLI package
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
167
|
+
The CLI package depends exactly on the compatible `@aopslabs/aops-server`
|
|
168
|
+
release, so local installation remains a single npm command. Remote users may
|
|
169
|
+
leave that local runtime unconfigured and connect only to their selected remote
|
|
170
|
+
target. No customer path requires Git or a source checkout. Advanced developers
|
|
171
|
+
can still run an explicit checkout with `--source-root`.
|
|
173
172
|
A stopped installation can move between valid checkout/npm roots through the
|
|
174
173
|
same setup command without reset or duplicate rollback copies; same-root npm
|
|
175
174
|
byte drift still requires reinstalling the package.
|
|
@@ -197,7 +196,9 @@ Opening the TUI does not by itself start or stop either service. Use the TUI's
|
|
|
197
196
|
explicit actions or the CLI command families. The convenience
|
|
198
197
|
`aops cockpit` command may start safely stopped services before opening the
|
|
199
198
|
browser; the explicit server and Cockpit lifecycle commands never stop or
|
|
200
|
-
start the other service.
|
|
199
|
+
start the other service. For setup path 2, an ordinary `aops server stop`
|
|
200
|
+
leaves the managed PostgreSQL container running; only the explicit destructive
|
|
201
|
+
installation reset removes its verified container and volume.
|
|
201
202
|
|
|
202
203
|
The npm package includes `launchers/aops-server.sh` and
|
|
203
204
|
`launchers/aops-server.ps1` for running the installed server in the current
|