@rubytech/create-maxy 1.0.685 → 1.0.686
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 +23 -215
- package/dist/pinned-binaries.js +10 -41
- package/dist/uninstall.js +23 -23
- package/package.json +1 -1
- package/payload/platform/plugins/cloudflare/scripts/setup-tunnel.sh +35 -9
- package/payload/platform/plugins/docs/PLUGIN.md +2 -0
- package/payload/platform/plugins/docs/references/cloudflare.md +1 -1
- package/payload/platform/plugins/docs/references/deployment.md +13 -10
- package/payload/platform/plugins/docs/references/graph.md +38 -0
- package/payload/platform/plugins/docs/references/platform.md +10 -7
- package/payload/platform/plugins/docs/references/troubleshooting.md +23 -13
- package/payload/platform/scripts/vnc.sh +7 -7
- package/payload/platform/templates/systemd/edge.service.template +5 -4
- package/payload/server/maxy-edge.js +5 -367
- package/payload/server/public/assets/admin-BqLtaMVu.js +352 -0
- package/payload/server/public/assets/{data-DUSyrydY.js → data-BZ7v-zug.js} +1 -1
- package/payload/server/public/assets/{file-CDJ6dUV3.js → file-CScYkZq5.js} +1 -1
- package/payload/server/public/assets/graph-tjXdtwk-.js +50 -0
- package/payload/server/public/assets/{house-CNP_bwvT.js → house-CdFRNujU.js} +1 -1
- package/payload/server/public/assets/{jsx-runtime-BFFQvkdQ.css → jsx-runtime-Og0q7dXg.css} +1 -1
- package/payload/server/public/assets/{public-sHoAccvb.js → public-CrkQJek6.js} +2 -2
- package/payload/server/public/assets/{share-2-DBcb9j6E.js → share-2-Ev-D4Lm9.js} +1 -1
- package/payload/server/public/assets/{useVoiceRecorder-CtSgpc95.js → useVoiceRecorder-DyDXH7EA.js} +2 -2
- package/payload/server/public/assets/{x-CTVJaC_u.js → x-D5W7ddgP.js} +1 -1
- package/payload/server/public/data.html +6 -6
- package/payload/server/public/graph.html +6 -6
- package/payload/server/public/index.html +7 -8
- package/payload/server/public/public.html +4 -4
- package/payload/server/server.js +830 -258
- package/payload/platform/templates/dotfiles/.tmux.conf +0 -1
- package/payload/platform/templates/systemd/ttyd.service.template +0 -30
- package/payload/server/public/assets/admin-BFmYXz1V.js +0 -362
- package/payload/server/public/assets/admin-kHJ-D0s7.css +0 -1
- package/payload/server/public/assets/graph-CWcYp5bE.js +0 -50
- /package/payload/server/public/assets/{jsx-runtime-BVKWELH6.js → jsx-runtime-CHqDsKlc.js} +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
set -g history-limit 50000
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
[Unit]
|
|
2
|
-
Description=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 __TTYD_PORT__ listen on 127.0.0.1:<per-brand-port> (the edge service
|
|
13
|
-
# proxies /ttyd to it via TTYD_PORT env)
|
|
14
|
-
# -i 127.0.0.1 reject non-loopback connections at the ttyd layer as well
|
|
15
|
-
# -W writable (allow client → server input bytes)
|
|
16
|
-
# tmux new-session -A -s maxy-pty attach if session exists, create otherwise.
|
|
17
|
-
# Lifetime = user session / device lifetime. Outlives main brand service
|
|
18
|
-
# restarts because this unit has no After/Requires on it — independent.
|
|
19
|
-
# Known shared-user gap: the `maxy-pty` session name is identical across
|
|
20
|
-
# brands, so two brands running as the same linux user share one tmux
|
|
21
|
-
# session. Tracked in Task 663; structurally removed by Task 660 (per-user
|
|
22
|
-
# linux brand isolation).
|
|
23
|
-
# -x 200 -y 50 initial geometry; xterm.js fit-addon drives runtime resizes.
|
|
24
|
-
ExecStart=/usr/local/bin/ttyd -p __TTYD_PORT__ -i 127.0.0.1 -W tmux new-session -A -s maxy-pty -x 200 -y 50
|
|
25
|
-
Environment=TERM=xterm-256color
|
|
26
|
-
Restart=always
|
|
27
|
-
RestartSec=2
|
|
28
|
-
|
|
29
|
-
[Install]
|
|
30
|
-
WantedBy=default.target
|