PORT=3000
DATABASE_URL="postgresql://postgres:password@localhost:5432/{{PROJECT_NAME}}?schema=public"
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
