# SmartINBOX Environment Configuration

# Application Settings
NODE_ENV=production
PORT=3000
BASE_URL=https://smartinbox.smartersweb.host

# Database Configuration
DATABASE_URL=mysql://smartinbox:smartinbox_password@localhost:3306/smartinbox
REDIS_URL=redis://localhost:6379

# Email Configuration
SMTP_HOST=localhost
SMTP_PORT=25
SMTP_SECURE=false
SMTP_USER=
SMTP_PASS=
MAIL_FROM=noreply@smartersweb.host

# Authentication
JWT_SECRET=change_this_to_a_secure_random_string_in_production
JWT_EXPIRY=7d
SESSION_SECRET=change_this_to_another_secure_random_string

# Storage
STORAGE_PATH=/home/smartersweb/smartersweb/smartinbox.smartersweb.host/data
UPLOAD_MAX_SIZE=10485760 # 10MB

# Logging
LOG_LEVEL=info
LOG_FILE=/home/smartersweb/smartersweb/smartinbox.smartersweb.host/logs/app.log

# Security
CORS_ORIGIN=https://smartinbox.smartersweb.host
RATE_LIMIT_WINDOW=15m
RATE_LIMIT_MAX=100
