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>
34 lines
611 B
Bash
34 lines
611 B
Bash
# MiChangarrito Backend - Environment Variables
|
|
NODE_ENV=development
|
|
|
|
# Server
|
|
PORT=3141
|
|
API_PREFIX=api/v1
|
|
|
|
# Database
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_USERNAME=michangarrito_dev
|
|
DB_PASSWORD=MCh_dev_2025_secure
|
|
DB_DATABASE=michangarrito_dev
|
|
DB_SCHEMA=public
|
|
|
|
# JWT
|
|
JWT_SECRET=MCh_jwt_dev_2025_AcB7x9KmPq2sWfHg4jL8nRt0vYzXw1CdEiFoGhJkLmN3pQrSuVxY5bZ6aBeC8fDg
|
|
JWT_EXPIRES_IN=7d
|
|
|
|
# CORS
|
|
CORS_ORIGIN=http://localhost:3140
|
|
|
|
# Logging
|
|
LOG_LEVEL=debug
|
|
|
|
# Stripe (Monetization)
|
|
STRIPE_SECRET_KEY=
|
|
STRIPE_WEBHOOK_SECRET=
|
|
STRIPE_PUBLISHABLE_KEY=
|
|
|
|
# LLM / AI (for token consumption)
|
|
OPENAI_API_KEY=
|
|
LLM_MODEL=gpt-4o-mini
|