batipanel 0.4.3 → 0.4.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 +5 -3
- package/VERSION +1 -1
- package/install.sh +14 -29
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -120,7 +120,8 @@ b server start # Docker 서버 시작 — 끝!
|
|
|
120
120
|
# Install (pick one)
|
|
121
121
|
npx batipanel # npm/npx
|
|
122
122
|
brew install batiai/tap/batipanel # Homebrew
|
|
123
|
-
curl -fsSL https://batipanel.com/install.sh | bash # Shell script
|
|
123
|
+
curl -fsSL https://batipanel.com/install.sh | bash # Shell script (domain)
|
|
124
|
+
curl -fsSL https://raw.githubusercontent.com/batiai/batipanel/master/scripts/web-install.sh | bash # Shell script (GitHub)
|
|
124
125
|
|
|
125
126
|
# Run — the setup wizard guides you through everything
|
|
126
127
|
batipanel
|
|
@@ -217,7 +218,8 @@ All dependencies (tmux, lazygit, btop, yazi, eza) are installed automatically.
|
|
|
217
218
|
### Shell script (Linux / WSL / macOS)
|
|
218
219
|
|
|
219
220
|
```bash
|
|
220
|
-
|
|
221
|
+
# One-line install (no npm/Node.js required)
|
|
222
|
+
curl -fsSL https://raw.githubusercontent.com/batiai/batipanel/master/scripts/web-install.sh | bash
|
|
221
223
|
```
|
|
222
224
|
|
|
223
225
|
Or clone and install manually:
|
|
@@ -229,7 +231,7 @@ bash install.sh
|
|
|
229
231
|
```
|
|
230
232
|
|
|
231
233
|
The installer auto-detects your package manager (apt, dnf, pacman, brew) and installs everything.
|
|
232
|
-
On macOS without Homebrew, the installer will
|
|
234
|
+
On macOS without Homebrew, the installer will install it automatically.
|
|
233
235
|
|
|
234
236
|
### Windows (WSL)
|
|
235
237
|
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.4
|
package/install.sh
CHANGED
|
@@ -29,36 +29,21 @@ echo "Checking tools..."
|
|
|
29
29
|
if [ "$OS" = "Darwin" ] && ! has_cmd brew; then
|
|
30
30
|
echo ""
|
|
31
31
|
echo "Homebrew is not installed (required for macOS package management)."
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
eval "$(/usr/local/bin/brew shellenv)"
|
|
44
|
-
fi
|
|
45
|
-
if has_cmd brew; then
|
|
46
|
-
echo "Homebrew installed successfully."
|
|
47
|
-
else
|
|
48
|
-
echo "Homebrew install completed but 'brew' not found in PATH."
|
|
49
|
-
echo " Close and reopen Terminal, then re-run this installer."
|
|
50
|
-
exit 1
|
|
51
|
-
fi
|
|
52
|
-
else
|
|
53
|
-
echo ""
|
|
54
|
-
echo "Homebrew is required on macOS. Install manually:"
|
|
55
|
-
echo " /bin/bash -c \"\$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\""
|
|
56
|
-
echo ""
|
|
57
|
-
echo "Then re-run: bash install.sh"
|
|
58
|
-
exit 1
|
|
59
|
-
fi
|
|
32
|
+
echo "Installing Homebrew..."
|
|
33
|
+
echo ""
|
|
34
|
+
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
|
35
|
+
# add to PATH for this session (Apple Silicon vs Intel)
|
|
36
|
+
if [ -f /opt/homebrew/bin/brew ]; then
|
|
37
|
+
eval "$(/opt/homebrew/bin/brew shellenv)"
|
|
38
|
+
elif [ -f /usr/local/bin/brew ]; then
|
|
39
|
+
eval "$(/usr/local/bin/brew shellenv)"
|
|
40
|
+
fi
|
|
41
|
+
if has_cmd brew; then
|
|
42
|
+
echo "Homebrew installed successfully."
|
|
60
43
|
else
|
|
61
|
-
echo "
|
|
44
|
+
echo ""
|
|
45
|
+
echo "Homebrew install completed but 'brew' not found in PATH."
|
|
46
|
+
echo " Close and reopen Terminal, then re-run this installer."
|
|
62
47
|
exit 1
|
|
63
48
|
fi
|
|
64
49
|
fi
|