dorkos 0.12.0 → 0.13.1
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 +19 -0
- package/dist/bin/cli.js +964 -50
- package/dist/client/assets/{TopologyGraph-BjcekO_O.js → TopologyGraph-YEs4uqvE.js} +1 -1
- package/dist/client/assets/{highlighted-body-TPN3WLV5-D1vgKhTK.js → highlighted-body-TPN3WLV5-CUmfCQds.js} +1 -1
- package/dist/client/assets/index-BmPQoLY4.css +1 -0
- package/dist/client/assets/{index-Crrby1Ia.js → index-DrXqypJ0.js} +272 -272
- package/dist/client/index.html +2 -2
- package/dist/server/index.js +68028 -25759
- package/dist/server/index.js.map +4 -4
- package/package.json +7 -4
- package/dist/client/assets/index-BOsZyoVQ.css +0 -1
package/README.md
CHANGED
|
@@ -81,6 +81,7 @@ dorkos config # Show all settings
|
|
|
81
81
|
dorkos config set <key> <val> # Update a setting
|
|
82
82
|
dorkos init # Interactive setup wizard
|
|
83
83
|
dorkos init --yes # Accept all defaults
|
|
84
|
+
dorkos cleanup # Remove all DorkOS data
|
|
84
85
|
```
|
|
85
86
|
|
|
86
87
|
### Flags
|
|
@@ -143,6 +144,24 @@ docker run --rm -p 4242:4242 \
|
|
|
143
144
|
dorkos
|
|
144
145
|
```
|
|
145
146
|
|
|
147
|
+
## Updating
|
|
148
|
+
|
|
149
|
+
DorkOS checks for new versions on startup and displays an update notice when one is available. Check your current version:
|
|
150
|
+
|
|
151
|
+
```bash
|
|
152
|
+
dorkos --version
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
Update to the latest release:
|
|
156
|
+
|
|
157
|
+
```bash
|
|
158
|
+
npm install -g dorkos@latest
|
|
159
|
+
# or
|
|
160
|
+
pnpm add -g dorkos@latest
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
For Homebrew, Docker, and other update methods, see the [full upgrade guide](https://dorkos.ai/docs/getting-started/installation#updating).
|
|
164
|
+
|
|
146
165
|
## API Documentation
|
|
147
166
|
|
|
148
167
|
Interactive API docs at `/api/docs` (Scalar UI) and raw OpenAPI spec at `/api/openapi.json`.
|