diff --git a/Makefile b/Makefile index 18a2010..429eb31 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ REMOTE_USER ?= $(USER) REMOTE_PATH ?= ~/uncloseai-speech CONTAINER_NAME ?= uncloseai-speech-server-1 -.PHONY: help deploy sync restart logs test clean stop start voices voices-piper voices-xtts +.PHONY: help deploy sync restart logs test clean stop start voices voices-piper voices-xtts push-all help: @echo "🦝 Raccoon TTS Mission - Development Commands" @@ -36,6 +36,9 @@ help: @echo " make start - Start Docker container" @echo " make stop - Stop Docker container" @echo " make clean - Stop and remove container" + @echo "" + @echo "Git:" + @echo " make push-all - Push to all git remotes (origin + github)" sync: @echo "📦 Syncing files to $(REMOTE_HOST)..." @@ -110,3 +113,9 @@ test-xtts: -o /tmp/xtts_test.mp3 @echo "✅ Test complete! Playing audio..." @firefox /tmp/xtts_test.mp3 || mpv /tmp/xtts_test.mp3 || echo "Install firefox or mpv to play audio" + +push-all: + @echo "🚀 Pushing to all remotes..." + git push origin main + git push github main + @echo "✅ Pushed to origin and github!"