preparado entorno de desarrollo local
All checks were successful
Deploy conversation layer / deploy (push) Successful in 21s

This commit is contained in:
2025-06-04 23:25:57 -06:00
parent 7fa6a73538
commit 41f6ace10a
4 changed files with 611 additions and 13 deletions

View File

@@ -9,12 +9,10 @@ sync-from-github:
sync-to-github:
git push github main
# Start the chat UI locally (uses variables from .env if present)
chat:
@set -a; [ -f .env ] && . .env || true; set +a; \
cd chat-ui && npm install && npm run build && npm start
# Start the WhatsApp router locally (uses variables from .env if present)
router:
@set -a; [ -f .env ] && . .env || true; set +a; \
cd whatsapp-router && npm install && npm run build && npm start
cd whatsapp-router && npm install && npm run dev