@akash-chowdhury-24/deployhub 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 +53 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,10 @@ Zero-configuration deployment and artifact manager for Node.js projects. When yo
|
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
|
+
DeployHub can be installed via **npm** (requires Node.js 18+) or as a **standalone binary** (no Node.js required).
|
|
8
|
+
|
|
9
|
+
### npm (recommended for Node.js projects)
|
|
10
|
+
|
|
7
11
|
```bash
|
|
8
12
|
npm install -g @akash-chowdhury-24/deployhub
|
|
9
13
|
```
|
|
@@ -12,9 +16,57 @@ Or use locally in your project:
|
|
|
12
16
|
|
|
13
17
|
```bash
|
|
14
18
|
npm install @akash-chowdhury-24/deployhub
|
|
15
|
-
npx
|
|
19
|
+
npx deployhub init
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
### Standalone binary (Linux / macOS)
|
|
23
|
+
|
|
24
|
+
Downloads the latest release from [GitHub Releases](https://github.com/Akash-Chowdhury-24/DeployHub/releases) and installs to `/usr/local/bin` (or `~/.local/bin` without sudo):
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
curl -fsSL https://raw.githubusercontent.com/Akash-Chowdhury-24/DeployHub/main/install.sh | sh
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Supported platforms: Linux x64, macOS x64, macOS ARM64. If the binary download fails, the script falls back to `npm install -g`.
|
|
31
|
+
|
|
32
|
+
### Standalone binary (Windows)
|
|
33
|
+
|
|
34
|
+
Run in PowerShell:
|
|
35
|
+
|
|
36
|
+
```powershell
|
|
37
|
+
irm https://raw.githubusercontent.com/Akash-Chowdhury-24/DeployHub/main/install.ps1 | iex
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Installs to `%LOCALAPPDATA%\Programs\DeployHub` and adds it to your user PATH. On Windows ARM64, the script installs via npm instead (no native binary yet).
|
|
41
|
+
|
|
42
|
+
### Manual download
|
|
43
|
+
|
|
44
|
+
Pick the asset for your platform from the [latest release](https://github.com/Akash-Chowdhury-24/DeployHub/releases/latest):
|
|
45
|
+
|
|
46
|
+
| Platform | Asset |
|
|
47
|
+
|----------|-------|
|
|
48
|
+
| Linux x64 | `deployhub-linux-x64` |
|
|
49
|
+
| macOS x64 | `deployhub-macos-x64` |
|
|
50
|
+
| macOS ARM64 | `deployhub-macos-arm64` |
|
|
51
|
+
| Windows x64 | `deployhub-win.exe` |
|
|
52
|
+
|
|
53
|
+
Make it executable (Linux/macOS) and place it on your PATH:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
chmod +x deployhub-linux-x64
|
|
57
|
+
sudo mv deployhub-linux-x64 /usr/local/bin/deployhub
|
|
58
|
+
deployhub --version
|
|
16
59
|
```
|
|
17
60
|
|
|
61
|
+
### Verify installation
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
deployhub --version
|
|
65
|
+
deployhub doctor
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
To update an npm install: `deployhub update` or `npm install -g @akash-chowdhury-24/deployhub@latest`. For binary installs, re-run the install script or download the new release.
|
|
69
|
+
|
|
18
70
|
## Quick Start
|
|
19
71
|
|
|
20
72
|
### 1. Initialize
|