Marketplace móvil para negocios locales mexicanos. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React Web) - apps/mobile (Expo/React Native) - apps/mcp-server (Claude MCP Server) - apps/whatsapp-service (WhatsApp Business API) - database/ (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
24 lines
690 B
Plaintext
24 lines
690 B
Plaintext
# =============================================================================
|
|
# MICHANGARRITO - ASIGNACION DE PUERTOS
|
|
# =============================================================================
|
|
# Referencia rapida de puertos del proyecto
|
|
# =============================================================================
|
|
|
|
# Aplicaciones
|
|
WEB_PORT=3140
|
|
BACKEND_PORT=3141
|
|
MCP_PORT=3142
|
|
WHATSAPP_PORT=3143
|
|
MOBILE_METRO_PORT=8081
|
|
|
|
# Infraestructura
|
|
DB_PORT=5432
|
|
REDIS_PORT=6379
|
|
REDIS_DB=8 # Database number dentro de instancia compartida
|
|
|
|
# Desarrollo (opcionales)
|
|
MAILHOG_SMTP_PORT=1025
|
|
MAILHOG_WEB_PORT=8025
|
|
|
|
# =============================================================================
|