Add dev target and nodemon setup for agent

This commit is contained in:
josedario87
2025-06-05 00:21:00 -06:00
parent cc6e378f8c
commit bb9d47feab
4 changed files with 573 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
.PHONY: sync-from-github sync-to-github chat router
.PHONY: sync-from-github sync-to-github chat router agent
# Pull latest changes from the GitHub mirror and push them to Gitea
sync-from-github:
@@ -13,6 +13,9 @@ chat:
cd chat-ui && npm install && npm run build && npm start
router:
cd whatsapp-router && npm install && npm run dev
cd whatsapp-router && npm install && npm run dev
agent:
cd conversation-layer-agent && npm install && npm run dev