diff options
| author | Christophe Besson <cbesson@gmail.com> | 2026-09-26 12:23:16 +0200 |
|---|---|---|
| committer | Christophe Besson <cbesson@gmail.com> | 2026-09-26 12:23:16 +0200 |
| commit | fc761e7df40eac828d4e9858fab56958078c928b (patch) | |
| tree | fc62061f70f374fcc8366d7ef15882a2d983ac9b /packaging/README.md | |
| parent | 1c07ae23f3694b972e307c50c9c09f1c429f2ea2 (diff) | |
| download | meshbay-fc761e7df40eac828d4e9858fab56958078c928b.tar.gz | |
fix(node): read the packaged TMDB token in place
A node onboarded by the desktop client never ran `init`, so default.env was
never copied to node.env; and default.env was 0600 root, unreadable to a
per-user node anyway. The daemon now loads it beneath node.env, 0644.
Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
Diffstat (limited to 'packaging/README.md')
| -rw-r--r-- | packaging/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/README.md b/packaging/README.md index b65d0ed..6081fc7 100644 --- a/packaging/README.md +++ b/packaging/README.md @@ -95,7 +95,7 @@ no key-generation step to run by hand. ## Post-install (node) ```bash -meshbay-node init # copies default.env (with TMDB token) +meshbay-node init nano ~/.config/meshbay/node.toml systemctl --user enable --now meshbay-node ``` |