flyingff2083/parallel_self
0
1# Server Configuration2PORT=30003NODE_ENV=development4 5# System Mode (gentle or research)6MODE=gentle7 8# Safety Thresholds9EMOTION_THRESHOLD_FEAR=0.910EMOTION_THRESHOLD_ANGER=0.911MAX_SESSION_DURATION_MS=36000012 13# Emergency Contacts14EMERGENCY_EMAIL=support@example.com15EMERGENCY_PHONE=+1-800-273-825516RESEARCHER_EMAIL=researcher@example.com17 18# Crisis Resources19CRISIS_HOTLINE=98820CRISIS_TEXT=74174121 22# Data Retention23DATA_RETENTION_DAYS=3024 25# Security26SESSION_SECRET=change-this-to-a-random-secret-key27CORS_ORIGIN=http://localhost:300028 29# Email Configuration (optional - for notifications)30SMTP_HOST=smtp.gmail.com31SMTP_PORT=58732SMTP_USER=your-email@gmail.com33SMTP_PASS=your-app-password34 35# Logging36LOG_LEVEL=info37 