Files
ableton-mcp-ai/AbletonMCP_AI_BAK_20260328_200801/automation/wsl/install_service.sh
renato97 6ec8663954 Initial commit: AbletonMCP-AI complete system
- MCP Server with audio fallback, sample management
- Song generator with bus routing
- Reference listener and audio resampler
- Vector-based sample search
- Master chain with limiter and calibration
- Fix: Audio fallback now works without M4L
- Fix: Full song detection in sample loader

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-28 22:53:10 -03:00

13 lines
437 B
Bash

#!/usr/bin/env bash
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
SERVICE_SRC="$SCRIPT_DIR/ableton-glm-loop.service"
SERVICE_DST="/etc/systemd/system/ableton-glm-loop.service"
sudo cp "$SERVICE_SRC" "$SERVICE_DST"
sudo systemctl daemon-reload
sudo systemctl enable ableton-glm-loop.service
sudo systemctl restart ableton-glm-loop.service
sudo systemctl status --no-pager ableton-glm-loop.service || true