diff options
| author | Christophe Besson <cbesson@gmail.com> | 2026-08-24 14:33:38 +0200 |
|---|---|---|
| committer | Christophe Besson <cbesson@gmail.com> | 2026-08-24 14:33:38 +0200 |
| commit | 317f09328ed8bf20148b707470c9b0fe82e59575 (patch) | |
| tree | ba8daf5dcf050d44b7b0e766babbfda8fadac59f /packaging/systemd | |
| parent | b6e2dcea65124673da047f9b3c92bc5e25980d63 (diff) | |
| parent | 0b0da86f1f9d6f0b1a27b5e1e1658c42de9f356a (diff) | |
| download | meshbay-317f09328ed8bf20148b707470c9b0fe82e59575.tar.gz | |
Merge branch 'docs/mediacenter-videos-app': Videos group app
Poster grid / flat list browsing, TMDB metadata enrichment, thumbnail
generation and caching, season-specific overviews, manual match
correction, and the create-group wizard's app-selection step.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01LAmyXtc6dAADsH23ydXQpY
Diffstat (limited to 'packaging/systemd')
| -rw-r--r-- | packaging/systemd/meshbay-node-user.service | 3 | ||||
| -rw-r--r-- | packaging/systemd/meshbay-node.service | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/packaging/systemd/meshbay-node-user.service b/packaging/systemd/meshbay-node-user.service index 833f31a..f476841 100644 --- a/packaging/systemd/meshbay-node-user.service +++ b/packaging/systemd/meshbay-node-user.service @@ -25,6 +25,9 @@ Type=simple # Secrets: MESHBAY_UNLOCK_KEY (keystore). MESHBAY_PASSWORD is no longer read — # the node authenticates to the hub with an Ed25519 signature (NS7). +# MESHBAY_TMDB_DEFAULT_TOKEN (Videos app, optional) also lives here — never +# in source. Absent means TMDB lookups are inert until the operator sets one +# here or configures a custom token in Settings (docs/mediacenter.md §5.5). EnvironmentFile=-%h/.config/meshbay/node.env ExecStart=/usr/bin/meshbay-node --config %h/.config/meshbay/node.toml diff --git a/packaging/systemd/meshbay-node.service b/packaging/systemd/meshbay-node.service index edff7f1..a469484 100644 --- a/packaging/systemd/meshbay-node.service +++ b/packaging/systemd/meshbay-node.service @@ -12,7 +12,10 @@ Group=%i # Per-user service: systemctl enable --now meshbay-node@$USER WorkingDirectory=%h -# Secrets: MESHBAY_PASSWORD (hub login), MESHBAY_UNLOCK_KEY (keystore) +# Secrets: MESHBAY_PASSWORD (hub login), MESHBAY_UNLOCK_KEY (keystore), +# MESHBAY_TMDB_DEFAULT_TOKEN (Videos app — optional, no literal default +# ships in source; absent means TMDB lookups are inert until the operator +# sets one here or configures a custom token in Settings, docs/mediacenter.md §5.5) EnvironmentFile=-%h/.config/meshbay/node.env ExecStart=/usr/bin/meshbay-node --config %h/.config/meshbay/node.toml |