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>
20 lines
489 B
Plaintext
20 lines
489 B
Plaintext
# Server
|
|
PORT=3143
|
|
NODE_ENV=development
|
|
CORS_ORIGIN=*
|
|
|
|
# WhatsApp Business API (Meta)
|
|
WHATSAPP_ACCESS_TOKEN=your_access_token_here
|
|
WHATSAPP_PHONE_NUMBER_ID=your_phone_number_id
|
|
WHATSAPP_VERIFY_TOKEN=your_webhook_verify_token
|
|
WHATSAPP_APP_SECRET=your_app_secret
|
|
|
|
# LLM Configuration
|
|
OPENAI_API_KEY=your_openai_api_key
|
|
LLM_BASE_URL=https://api.openai.com/v1
|
|
LLM_MODEL=gpt-4o-mini
|
|
|
|
# Backend API (for product/order data)
|
|
BACKEND_API_URL=http://localhost:3141
|
|
BACKEND_API_KEY=internal_api_key
|