22 lines
507 B
Makefile
22 lines
507 B
Makefile
.PHONY: sync-from-github sync-to-github chat router agent mcp
|
|
|
|
# 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
|
|
|
|
agent:
|
|
cd conversation-layer-agent && npm install && npm run dev
|
|
|
|
mcp:
|
|
cd mcp && npm install && npm run dev
|