Add start-llm and stop-llm commands to Makefile

This commit is contained in:
2026-06-02 11:32:56 +02:00
parent aa4a1c77c5
commit a08333b70a

View File

@@ -1,4 +1,4 @@
.PHONY: install uninstall status
.PHONY: install uninstall status start-llm stop-llm restart-llm
OPENCODE_DIR := $(HOME)/.config/opencode
REPO_DIR := $(shell pwd)
@@ -9,6 +9,8 @@ ITEMS := skills tools agents
# LLM services to manage
LLM_SERVICES := atlas forge swift
PLIST_PATH := ~/Library/LaunchAgents
install:
@echo "Installing OpenCode config symlinks..."
@mkdir -p $(OPENCODE_DIR)
@@ -49,9 +51,21 @@ status:
fi \
done
stop-llm-%:
@echo "Stopping com.vllm-mlx-$*..."
@launchctl bootout gui/$$(id -u) $(PLIST_PATH)/com.vllm-mlx.$*.plist 2>/dev/null || true
stop-llm: $(patsubst %,stop-llm-%,$(LLM_SERVICES))
start-llm-%:
@echo "Starting com.vllm-mlx-$*..."
@launchctl bootstrap gui/$$(id -u) $(PLIST_PATH)/com.vllm-mlx.$*.plist
start-llm: $(patsubst %,start-llm-%,$(LLM_SERVICES))
restart-llm-%:
@echo "Restarting com.vllm-mlx-$*..."
@launchctl bootout gui/$$(id -u) ~/Library/LaunchAgents/com.vllm-mlx.$*.plist || true
@launchctl bootstrap gui/$$(id -u) ~/Library/LaunchAgents/com.vllm-mlx.$*.plist
@launchctl bootout gui/$$(id -u) $(PLIST_PATH)/com.vllm-mlx.$*.plist || true
@launchctl bootstrap gui/$$(id -u) $(PLIST_PATH)/com.vllm-mlx.$*.plist
restart-llm: $(patsubst %,restart-llm-%,$(LLM_SERVICES))