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:
parent
d6c9654816
commit
7b11e4c336
1 changed files with 10 additions and 1 deletions
11
Makefile
11
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!"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue