Marketplace móvil para negocios locales
Go to file
rckrdmrd 62bf0cf0c1 feat: Sprint 3 - Notificaciones y Pedidos WhatsApp (MCH-015, MCH-017)
MCH-017 - Notificaciones:
- Módulo notifications en backend
- Entities: Notification, Template, Preference, DeviceToken
- Service con multi-canal (push, WhatsApp, SMS)
- DDL schema con templates por defecto

MCH-015 - Pedidos WhatsApp:
- BackendApiService para integración
- Flujo de creación de pedidos real
- Integración datos: ventas, inventario, fiados

Progreso: 51% → 57%

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-18 03:32:51 -06:00
.github/workflows [MIGRATION-V2] feat: Migrar michangarrito a estructura v2 2026-01-10 11:28:54 -06:00
backend@75e881e1cc feat: Sprint 3 - Notificaciones y Pedidos WhatsApp (MCH-015, MCH-017) 2026-01-18 03:32:51 -06:00
backups [MIGRATION-V2] feat: Migrar michangarrito a estructura v2 2026-01-10 11:28:54 -06:00
database@c730a9672d feat: Sprint 3 - Notificaciones y Pedidos WhatsApp (MCH-015, MCH-017) 2026-01-18 03:32:51 -06:00
deploy [MIGRATION-V2] feat: Migrar michangarrito a estructura v2 2026-01-10 11:28:54 -06:00
docs feat: Sprint 3 - Notificaciones y Pedidos WhatsApp (MCH-015, MCH-017) 2026-01-18 03:32:51 -06:00
frontend@2ae94a679f chore: Sync submodules backend y frontend - builds funcionales 2026-01-17 05:21:43 -06:00
mcp-server@77c588dae0 docs(MCH-010): Mark MCP Server epic as completed - Sprint 1 2026-01-17 05:57:01 -06:00
mobile@a71600df2f [MULTI-REPO] Convertir a estructura multi-repo con submodules -v2 2026-01-16 08:28:00 -06:00
orchestration [MCH-DOC-VAL] docs: Validar documentacion vs codigo - corregir discrepancias 2026-01-17 05:10:29 -06:00
whatsapp-service@8ba0b7ec56 feat: Sprint 3 - Notificaciones y Pedidos WhatsApp (MCH-015, MCH-017) 2026-01-18 03:32:51 -06:00
.env [MIGRATION-V2] feat: Migrar michangarrito a estructura v2 2026-01-10 11:28:54 -06:00
.env.docker [MIGRATION-V2] feat: Migrar michangarrito a estructura v2 2026-01-10 11:28:54 -06:00
.env.example [MIGRATION-V2] feat: Migrar michangarrito a estructura v2 2026-01-10 11:28:54 -06:00
.env.ports [MIGRATION-V2] feat: Migrar michangarrito a estructura v2 2026-01-10 11:28:54 -06:00
.gitignore [MICHANGARRITO] chore: Add .gitignore for dependencies and build artifacts 2026-01-13 02:13:02 -06:00
.gitmodules [MULTI-REPO] Convertir a estructura multi-repo con submodules -v2 2026-01-16 08:28:00 -06:00
docker-compose.yml [MIGRATION-V2] feat: Migrar michangarrito a estructura v2 2026-01-10 11:28:54 -06:00
README.md [MIGRATION-V2] feat: Migrar michangarrito a estructura v2 2026-01-10 11:28:54 -06:00

MiChangarrito - Plataforma POS Multi-tenant

Version: 0.1.0 Estado: Desarrollo Tipo: STANDALONE (SaaS) Sistema: SIMCO + NEXUS v3.4


Descripcion

Plataforma de punto de venta (POS) para tiendas pequenas y medianas en Mexico. Sistema multi-tenant con soporte para multiples canales: app movil, web, WhatsApp y asistente IA.

Funcionalidades Principales

  • Punto de venta rapido y facil
  • Gestion de productos e inventario
  • Control de clientes y fiados
  • Pedidos y ordenes
  • Integracion WhatsApp Business
  • Asistente IA para ventas
  • Reportes y analytics
  • Pagos: Stripe, MercadoPago, Clip, CoDi, SPEI

Stack Tecnologico

Capa Tecnologia
Backend NestJS + TypeScript
Frontend Web React + Vite
Mobile React Native
Database PostgreSQL 16+ con RLS (Multi-tenant)
Cache Redis
AI/LLM OpenRouter, OpenAI, Claude, Ollama
WhatsApp Meta Business API
Payments Stripe, MercadoPago, Clip

Estructura del Proyecto

michangarrito/
├── apps/
│   ├── backend/          # API NestJS
│   ├── frontend/         # Web React
│   ├── mobile/           # React Native
│   ├── web/              # Landing page
│   ├── mcp-server/       # Servidor MCP para LLM
│   └── whatsapp-service/ # Integracion WhatsApp
├── database/
│   ├── schemas/          # DDL
│   └── seeds/            # Datos iniciales
├── docs/
│   ├── 00-vision-general/
│   ├── 01-epicas/
│   ├── 02-especificaciones/
│   └── 90-transversal/
└── orchestration/
    ├── 00-guidelines/
    ├── inventarios/
    ├── environment/
    └── trazas/

Modulos Principales

  1. Auth - Autenticacion y autorizacion
  2. Tenants - Multi-tenancy
  3. Products - Catalogo de productos
  4. Inventory - Control de inventario
  5. Sales - Punto de venta
  6. Customers - Clientes y fiados
  7. Orders - Pedidos
  8. Reports - Reportes y analytics
  9. Subscriptions - Planes y suscripciones
  10. Payments - Integracion de pagos

Inicio Rapido

# Backend
cd apps/backend && npm install && npm run start:dev

# Frontend
cd apps/frontend && npm install && npm run dev

# MCP Server
cd apps/mcp-server && npm install && npm run start

# WhatsApp Service
cd apps/whatsapp-service && npm install && npm run start

Variables de Entorno

Ver .env.example para la configuracion requerida.


Referencias

  • Vision: docs/00-vision-general/VISION-PROYECTO.md
  • Arquitectura: docs/00-vision-general/ARQUITECTURA-TECNICA.md
  • Requerimientos: docs/00-vision-general/REQUERIMIENTOS-FUNCIONALES.md
  • Contexto: orchestration/00-guidelines/

Creado: 2026-01-04 Actualizado: 2026-01-07