@legioncodeinc/hive 0.6.0 → 0.6.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 +5 -0
- package/dist/daemon/dashboard/app.js +25 -12
- package/dist/daemon/installer/detection.js +14 -2
- package/dist/daemon/installer/detection.js.map +1 -1
- package/dist/daemon/installer/products.d.ts +2 -5
- package/dist/daemon/installer/products.js +2 -4
- package/dist/daemon/installer/products.js.map +1 -1
- package/dist/dashboard/web/buzzing-screen.d.ts +8 -0
- package/dist/dashboard/web/buzzing-screen.js +77 -3
- package/dist/dashboard/web/buzzing-screen.js.map +1 -1
- package/dist/dashboard/web/onboarding/contracts.d.ts +37 -3
- package/dist/dashboard/web/onboarding/contracts.js +25 -17
- package/dist/dashboard/web/onboarding/contracts.js.map +1 -1
- package/dist/dashboard/web/onboarding/health-view.d.ts +10 -1
- package/dist/dashboard/web/onboarding/health-view.js +109 -25
- package/dist/dashboard/web/onboarding/health-view.js.map +1 -1
- package/dist/dashboard/web/onboarding/login-step.d.ts +6 -0
- package/dist/dashboard/web/onboarding/login-step.js +117 -4
- package/dist/dashboard/web/onboarding/login-step.js.map +1 -1
- package/dist/dashboard/web/onboarding/onboarding-screen.js +1 -1
- package/dist/dashboard/web/onboarding/onboarding-screen.js.map +1 -1
- package/dist/service/index.d.ts +7 -0
- package/dist/service/index.js +4 -1
- package/dist/service/index.js.map +1 -1
- package/dist/service/templates.d.ts +16 -2
- package/dist/service/templates.js +22 -7
- package/dist/service/templates.js.map +1 -1
- package/dist/service/windows-identity.d.ts +46 -0
- package/dist/service/windows-identity.js +76 -0
- package/dist/service/windows-identity.js.map +1 -0
- package/dist/shared/onboarding-types.d.ts +4 -0
- package/dist/shared/onboarding-types.js +4 -1
- package/dist/shared/onboarding-types.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -166,6 +166,11 @@ hive register # append Hive to Doctor's daemon registry
|
|
|
166
166
|
|
|
167
167
|
That's the whole list, on purpose. Day to day you never touch it; the installer wires the service unit and registration, Doctor keeps the process alive, and you live in the browser.
|
|
168
168
|
|
|
169
|
+
Two behaviors worth knowing:
|
|
170
|
+
|
|
171
|
+
- **Hive owns sign-in for the fleet.** When Honeycomb or Nectar detect Hive on the machine, they never open a sign-in of their own; this dashboard's onboarding is the one login surface, and the workload daemons sit degraded until it writes the shared credentials, then recover on their own.
|
|
172
|
+
- **`uninstall` is surgical and honest.** It stops the daemon, removes the service unit (current `com.legioncode.hive` and legacy `thehive` labels), deletes Hive's entry from Doctor's registry without touching anyone else's, and removes `~/.apiary/hive`, nothing more. Already gone? It exits 0 and says so. For a full-machine wipe, see `doctor purge` or the one-command uninstall at [get.theapiary.sh](https://get.theapiary.sh).
|
|
173
|
+
|
|
169
174
|
<img src="assets/brand/divider-minor.svg" width="100%" height="3">
|
|
170
175
|
|
|
171
176
|
## ✨ Open one URL, see the whole hive
|