not-manage 0.2.3 → 0.2.4
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 +7 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,11 +12,17 @@ This project is a terminal CLI from [Not Operations](https://notoperations.com/l
|
|
|
12
12
|
|
|
13
13
|
## Install
|
|
14
14
|
|
|
15
|
+
Before you run the install command, make sure your computer has:
|
|
16
|
+
|
|
17
|
+
- **Node.js 20 or newer**. Node.js is not installed by default on most computers. Install it from [nodejs.org](https://nodejs.org/); it includes the `npm` command used below.
|
|
18
|
+
- A working OS keychain: macOS Keychain, Windows Credential Manager, or a Linux Secret Service/keyring.
|
|
19
|
+
- A browser and internet access for the Clio login flow.
|
|
20
|
+
|
|
15
21
|
```bash
|
|
16
22
|
npm i -g not-manage && not-manage
|
|
17
23
|
```
|
|
18
24
|
|
|
19
|
-
|
|
25
|
+
`not-manage` itself does not run install-time scripts. npm may still perform normal dependency installation, including the secure keychain dependency used to store credentials locally. `not-manage` opens in help-first mode so you can inspect commands before changing local state.
|
|
20
26
|
|
|
21
27
|
What happens next:
|
|
22
28
|
|