Add GitHub remote and push-all Makefile target

- Add github remote: git@github.com:russellballestrini/openedai-speech.git
- Add 'make push-all' to push to both origin and github
- Document in make help

This ensures the raccoon mission code is mirrored on GitHub
for visibility and resilience.

🦝 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Russell Ballestrini 2025-11-09 09:55:42 -05:00
parent d6c9654816
commit 7b11e4c336

View file

@ -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!"