@rubytech/create-maxy 1.0.676 → 1.0.677
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/dist/index.js +77 -166
- package/dist/uninstall.js +24 -0
- package/package.json +1 -1
- package/payload/platform/plugins/docs/references/deployment.md +2 -3
- package/payload/platform/plugins/docs/references/platform.md +1 -1
- package/payload/platform/plugins/docs/references/troubleshooting.md +2 -2
- package/payload/platform/scripts/vnc.sh +34 -13
- package/payload/platform/templates/systemd/maxy-edge.service +33 -0
- package/payload/server/chunk-5YIXIF6C.js +726 -0
- package/payload/server/maxy-edge.js +422 -0
- package/payload/server/server.js +543 -1809
- package/payload/platform/templates/dotfiles/.tmux.conf +0 -1
- package/payload/platform/templates/systemd/maxy-ttyd.service +0 -25
|
@@ -1 +0,0 @@
|
|
|
1
|
-
set -g history-limit 50000
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
[Unit]
|
|
2
|
-
Description=Maxy admin terminal (ttyd + tmux) — persistent PTY for admin UI
|
|
3
|
-
After=default.target
|
|
4
|
-
|
|
5
|
-
[Service]
|
|
6
|
-
Type=simple
|
|
7
|
-
# ttyd binary lives at /usr/local/bin/ttyd — installed from pinned upstream
|
|
8
|
-
# GitHub releases (SHA256-verified) by create-maxy's step 11 (Task 602),
|
|
9
|
-
# because Debian Bookworm's apt does NOT carry a ttyd package. /usr/local/bin
|
|
10
|
-
# is the standard location for binaries installed outside the distro package
|
|
11
|
-
# manager; /usr/bin is reserved for apt-owned files.
|
|
12
|
-
# -p 7681 listen on 127.0.0.1:7681 (same-origin proxy in maxy-ui binds to it)
|
|
13
|
-
# -i 127.0.0.1 reject non-loopback connections at the ttyd layer as well
|
|
14
|
-
# -W writable (allow client → server input bytes)
|
|
15
|
-
# tmux new-session -A -s maxy-pty attach if session exists, create otherwise.
|
|
16
|
-
# Lifetime = user session / device lifetime. Outlives maxy-ui restarts because
|
|
17
|
-
# this unit has no After=maxy-ui.service and no Requires= — independent.
|
|
18
|
-
# -x 200 -y 50 initial geometry; xterm.js fit-addon drives runtime resizes.
|
|
19
|
-
ExecStart=/usr/local/bin/ttyd -p 7681 -i 127.0.0.1 -W tmux new-session -A -s maxy-pty -x 200 -y 50
|
|
20
|
-
Environment=TERM=xterm-256color
|
|
21
|
-
Restart=always
|
|
22
|
-
RestartSec=2
|
|
23
|
-
|
|
24
|
-
[Install]
|
|
25
|
-
WantedBy=default.target
|