ghcr-manager-visualizer 0.0.1-dev.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 ADDED
@@ -0,0 +1,45 @@
1
+ # ghcr-manager-visualizer
2
+
3
+ Local browser visualizer for `ghcr-manager` SQLite scan databases.
4
+
5
+ Use it to inspect manifest graphs, compare two scans of the same package, and investigate cleanup edge cases.
6
+
7
+ ## Install
8
+
9
+ ```sh
10
+ npm install --global ghcr-manager-visualizer
11
+ ```
12
+
13
+ ## Run
14
+
15
+ ```sh
16
+ ghcr-manager-visualizer --db ./artifacts/acme__demo.sqlite
17
+ ```
18
+
19
+ The command prints a local URL such as `http://127.0.0.1:43217`. Open that URL in your browser.
20
+
21
+ Optional flags:
22
+
23
+ - `--host <host>`: override the bind host. Default: `127.0.0.1`
24
+ - `--port <port>`: override the bind port. Default: `0`
25
+
26
+ Example:
27
+
28
+ ```sh
29
+ ghcr-manager-visualizer --db ./artifacts/acme__demo.sqlite --host 0.0.0.0 --port 4000
30
+ ```
31
+
32
+ ## DB Inputs
33
+
34
+ The visualizer reads the SQLite DB format produced by:
35
+
36
+ - `ghcr-manager scan`
37
+ - `ghcr-manager cleanup`
38
+ - `ghcr-manager db-merge`
39
+
40
+ ## Project
41
+
42
+ Main project and issue tracker:
43
+
44
+ - Repository: <https://github.com/ghcr-manager/ghcr-manager>
45
+ - Issues: <https://github.com/ghcr-manager/ghcr-manager/issues>