# =========================================== # CONFIGURACIÓN DEL SISTEMA # =========================================== # Aplicación APP_NAME=social-media-automation APP_ENV=development DEBUG=true SECRET_KEY=your-secret-key-here-change-in-production # =========================================== # BASE DE DATOS # =========================================== DATABASE_URL=postgresql://user:password@localhost:5432/social_automation # =========================================== # REDIS # =========================================== REDIS_URL=redis://localhost:6379/0 # =========================================== # DEEPSEEK API (Generación de contenido) # =========================================== DEEPSEEK_API_KEY=your-deepseek-api-key DEEPSEEK_BASE_URL=https://api.deepseek.com/v1 # =========================================== # X (TWITTER) API # =========================================== X_API_KEY=your-x-api-key X_API_SECRET=your-x-api-secret X_ACCESS_TOKEN=your-x-access-token X_ACCESS_TOKEN_SECRET=your-x-access-token-secret X_BEARER_TOKEN=your-x-bearer-token # =========================================== # META API (Facebook, Instagram, Threads) # =========================================== META_APP_ID=your-meta-app-id META_APP_SECRET=your-meta-app-secret META_ACCESS_TOKEN=your-meta-access-token # Facebook FACEBOOK_PAGE_ID=your-facebook-page-id # Instagram INSTAGRAM_ACCOUNT_ID=your-instagram-account-id # Threads THREADS_USER_ID=your-threads-user-id # =========================================== # CONFIGURACIÓN DE CONTENIDO # =========================================== # Información del negocio BUSINESS_NAME=Consultoría AS BUSINESS_LOCATION=Tijuana, México BUSINESS_WEBSITE=https://consultoria-as.com # Tono de comunicación CONTENT_TONE=profesional pero cercano, educativo, orientado a soluciones # =========================================== # NOTIFICACIONES (Opcional) # =========================================== TELEGRAM_BOT_TOKEN=your-telegram-bot-token TELEGRAM_CHAT_ID=your-telegram-chat-id # Email SMTP_HOST=smtp.example.com SMTP_PORT=587 SMTP_USER=your-email@example.com SMTP_PASSWORD=your-email-password