sisyphi 1.1.37 → 1.1.39
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/deploy/shared/cloud-init.yaml.tpl +7 -1
- package/dist/cli.js +627 -311
- package/dist/cli.js.map +1 -1
- package/dist/daemon.js +236 -172
- package/dist/daemon.js.map +1 -1
- package/dist/deploy/shared/cloud-init.yaml.tpl +7 -1
- package/dist/tui.js +235 -102
- package/dist/tui.js.map +1 -1
- package/package.json +1 -1
|
@@ -67,7 +67,13 @@ write_files:
|
|
|
67
67
|
runcmd:
|
|
68
68
|
# 1. Base packages.
|
|
69
69
|
- apt-get update
|
|
70
|
-
- DEBIAN_FRONTEND=noninteractive apt-get install -y curl git tmux fzf neovim build-essential ufw mosh ca-certificates gnupg
|
|
70
|
+
- DEBIAN_FRONTEND=noninteractive apt-get install -y curl git tmux fzf neovim build-essential ufw mosh ca-certificates gnupg pipx
|
|
71
|
+
|
|
72
|
+
# 1b. termrender — TUI markdown rendering. Without it the dashboard falls
|
|
73
|
+
# back to plain text. Install system-wide via pipx so the binary lands in
|
|
74
|
+
# /usr/local/bin and resolves on PATH for both interactive shells and
|
|
75
|
+
# systemd user services (same convention as the pbcopy/pbpaste shims).
|
|
76
|
+
- PIPX_HOME=/opt/pipx PIPX_BIN_DIR=/usr/local/bin pipx install termrender
|
|
71
77
|
|
|
72
78
|
# 2. Node 22 via NodeSource. /usr/bin/node, /usr/bin/npm.
|
|
73
79
|
- curl -fsSL https://deb.nodesource.com/setup_22.x | bash -
|