PORT=3000
MONGO_URI=mongodb://localhost:27017/{{PROJECT_NAME}}
JWT_SECRET=supersecretkey_change_in_production

# Redis Configuration
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_PASSWORD=

# SMTP Configuration (Nodemailer)
SMTP_HOST=smtp.mailtrap.io
SMTP_PORT=2525
SMTP_USER=your_smtp_user
SMTP_PASS=your_smtp_password
EMAIL_FROM=noreply@{{PROJECT_NAME}}.com
