Add sessiond restart command to docs

This commit is contained in:
Federico Jaramillo Martinez
2026-05-07 14:04:56 +02:00
parent 886c0fcde9
commit 34df785b68
2 changed files with 14 additions and 2 deletions
+7 -1
View File
@@ -94,7 +94,13 @@ journalctl --user -u pi-web-sessiond.service -f
journalctl --user -u pi-web-ui-dev.service -f
```
Because `sessiond` is intentionally not watched or restarted automatically, code changes that affect `src/server/sessiond.ts` or session runtime ownership require manually restarting `pi-web-sessiond.service`. Restarting only the UI dev service is enough for changes in the web/API/UI processes.
Because `sessiond` is intentionally not watched or restarted automatically, code changes that affect `src/server/sessiond.ts` or session runtime ownership require manually restarting `pi-web-sessiond.service`:
```bash
systemctl --user restart pi-web-sessiond.service
```
Restarting only the UI dev service is enough for changes in the web/API/UI processes.
For deployment: