.PHONY: dev-up


help:
	@echo "Usage: make <target>"
	@echo "Targets:"
	@echo "  sync           # Start watching and syncing plugin files to dev site"
	@echo "  sync-once      # Sync plugin files once to dev site"
	@echo "  sync-stop      # Stop the sync process"


# Plugin sync commands
sync:
	@echo "Starting plugin sync (watching for changes)..."
	@echo "Press Ctrl+C to stop"
	@./dev-workspace/scripts/sync-plugin-remote.sh --watch

sync-once:
	@echo "Syncing plugin files once..."
	@./dev-workspace/scripts/sync-plugin-remote.sh --once

sync-stop:
	@echo "Stopping sync process..."
	@pkill -f "sync-plugin-remote.sh" || true
