# Application NODE_ENV=development PORT=3000 API_PREFIX=api/v1 # Database DATABASE_HOST=localhost DATABASE_PORT=5432 DATABASE_USERNAME=engagehub DATABASE_PASSWORD=your_secure_password DATABASE_NAME=engagehub # Redis REDIS_HOST=localhost REDIS_PORT=6379 REDIS_PASSWORD= # JWT JWT_SECRET=your_jwt_secret_key_min_32_chars JWT_EXPIRES_IN=15m JWT_REFRESH_SECRET=your_refresh_secret_key_min_32_chars JWT_REFRESH_EXPIRES_IN=7d # Twilio TWILIO_ACCOUNT_SID=your_twilio_account_sid TWILIO_AUTH_TOKEN=your_twilio_auth_token TWILIO_VERIFY_SERVICE_SID=your_verify_service_sid # MinIO MINIO_ENDPOINT=localhost MINIO_PORT=9000 MINIO_ACCESS_KEY=minioadmin MINIO_SECRET_KEY=minioadmin MINIO_BUCKET=engagehub MINIO_USE_SSL=false # Email SMTP_HOST=smtp.example.com SMTP_PORT=587 SMTP_USER=your_email@example.com SMTP_PASSWORD=your_email_password SMTP_FROM=noreply@engagehub.com # Firebase (for push notifications) FIREBASE_PROJECT_ID=your_firebase_project_id FIREBASE_PRIVATE_KEY=your_firebase_private_key FIREBASE_CLIENT_EMAIL=your_firebase_client_email # App URLs APP_URL=http://localhost:3000 FRONTEND_URL=http://localhost:8080