Files
conversation-layer/Makefile
josedario87 41f6ace10a
All checks were successful
Deploy conversation layer / deploy (push) Successful in 21s
preparado entorno de desarrollo local
2025-06-04 23:25:57 -06:00

19 lines
389 B
Makefile

.PHONY: sync-from-github sync-to-github chat router
# Pull latest changes from the GitHub mirror and push them to Gitea
sync-from-github:
git pull github main
git push origin main
# Push local changes to the GitHub mirror
sync-to-github:
git push github main
chat:
cd chat-ui && npm install && npm run build && npm start
router:
cd whatsapp-router && npm install && npm run dev