acadex-cli 1.0.5 → 1.0.6
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 +25 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,12 +10,37 @@ A global CLI tool for managing Acadex projects with easy setup and automation.
|
|
|
10
10
|
npm install -g acadex-cli
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
+
**If you get an error about existing files:**
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
# On macOS/Linux
|
|
17
|
+
sudo rm -f /usr/local/bin/acadex /opt/homebrew/bin/acadex
|
|
18
|
+
npm install -g acadex-cli
|
|
19
|
+
|
|
20
|
+
# On Windows (PowerShell as Admin)
|
|
21
|
+
npm install -g acadex-cli --force
|
|
22
|
+
```
|
|
23
|
+
|
|
13
24
|
After installation, you can use the `acadex` command from anywhere:
|
|
14
25
|
|
|
15
26
|
```bash
|
|
16
27
|
acadex --help
|
|
17
28
|
```
|
|
18
29
|
|
|
30
|
+
### Uninstall
|
|
31
|
+
|
|
32
|
+
To completely remove ACADEX CLI:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
acadex uninstall
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
Or manually:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
npm uninstall -g acadex-cli
|
|
42
|
+
```
|
|
43
|
+
|
|
19
44
|
### Manual Installation
|
|
20
45
|
|
|
21
46
|
Clone the repository and link it globally:
|