Unify TUI runtime commands with gateway and harden gateway restart
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user