Unify TUI runtime commands with gateway and harden gateway restart

This commit is contained in:
William Valentin
2026-02-24 13:14:53 -08:00
parent db2f697741
commit 37be391a40
24 changed files with 1253 additions and 120 deletions
+6 -4
View File
@@ -17,17 +17,19 @@ start: ## Start production build (foreground)
node dist/cli/index.js start
# Systemd daemon management
daemon-start: ## Start the systemd service
daemon-start: ## Build and start the systemd service
pnpm build
systemctl --user start flynn.service
@echo "Flynn daemon started"
@echo "Flynn daemon built and started"
daemon-stop: ## Stop the systemd service
systemctl --user stop flynn.service
@echo "Flynn daemon stopped"
daemon-restart: ## Restart the systemd service
daemon-restart: ## Build and restart the systemd service
pnpm build
systemctl --user restart flynn.service
@echo "Flynn daemon restarted"
@echo "Flynn daemon built and restarted"
daemon-status: ## Check systemd service status
systemctl --user status flynn.service