summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2025-12-07 11:53:10 +0300
committerGrail Finder <wohilas@gmail.com>2025-12-07 13:22:07 +0300
commit5bbb134aca390e415b93d8440f22207e44b9e4f8 (patch)
tree8a91f69fda5b562fde9cbfbdb6321f0de7b26111 /Makefile
parent5582739e3c677ae7d397f4b4222cacb1c08a0df8 (diff)
Enha: docker-compose to not depend on locally downloaded models
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 36686c2..5ea51a2 100644
--- a/Makefile
+++ b/Makefile
@@ -36,6 +36,7 @@ download-whisper-model: ## Download Whisper model for STT in batteries directory
# Docker targets for STT/TTS services (in batteries directory)
docker-up: ## Start Docker Compose services for STT and TTS from batteries directory
@echo "Starting Docker services for STT (whisper) and TTS (kokoro)..."
+ @echo "Note: The Whisper model will be downloaded automatically inside the container on first run"
docker-compose -f batteries/docker-compose.yml up -d
@echo "Docker services started. STT available at http://localhost:8081, TTS available at http://localhost:8880"
@@ -51,3 +52,4 @@ docker-logs: ## View logs from Docker services in batteries directory
# Convenience target to setup everything
setup-complete: setup-whisper docker-up
@echo "Complete setup finished! STT and TTS services are running."
+ @echo "Note: Docker services will download the Whisper model automatically if not present."