29 lines
814 B
Plaintext
29 lines
814 B
Plaintext
# PRODUCTION Environment Variables
|
|
# NEVER commit this file to git!
|
|
|
|
# REQUIRED: Telegram Bot Configuration
|
|
TELEGRAM_BOT_TOKEN=YOUR_PRODUCTION_BOT_TOKEN_HERE
|
|
API_BASE_URL=https://your-production-api.com/api
|
|
WEBSITE_URL=https://yaltipia.com
|
|
|
|
|
|
# Notification System (Production Settings)
|
|
NOTIFICATION_MODE=optimized
|
|
NOTIFICATION_CHECK_INTERVAL_HOURS=6
|
|
MAX_NOTIFICATIONS_PER_USER=3
|
|
SEND_NO_MATCH_NOTIFICATIONS=false
|
|
|
|
# Monitoring System (Production Settings)
|
|
ADMIN_CHAT_IDS=YOUR_ADMIN_CHAT_ID_HERE
|
|
MONITORING_TOPIC_ID=YOUR_MONITORING_TOPIC_ID_HERE
|
|
HEALTH_CHECK_INTERVAL_MINUTES=30
|
|
DAILY_REPORT_HOUR=9
|
|
ERROR_CLEANUP_INTERVAL_HOURS=1
|
|
|
|
# Security: Ensure HTTPS in production
|
|
# NODE_ENV=production
|
|
# FORCE_HTTPS=true
|
|
|
|
# Webhook Configuration (in the future)
|
|
# WEBHOOK_PORT=3001
|
|
# WEBHOOK_HOST=your-production-domain.com |