# ============================================ # PULSE CRM BACKEND - Environment Variables # ============================================ # Server PORT=8000 NODE_ENV=development # Database (PostgreSQL) DATABASE_URL=postgresql://pulse:password@localhost:5432/pulse_crm DB_POOL_SIZE=10 # JWT Secrets (use `openssl rand -base64 32` to generate) JWT_SECRET=CHANGE_ME_IN_PRODUCTION_use_openssl_rand_base64_32 # CORS CORS_ORIGINS=http://localhost:3000,https://crm.kronos-soulution.de # Email (for verification, password reset) SMTP_HOST=smtp.example.com SMTP_PORT=587 SMTP_USER=noreply@example.com SMTP_PASS=your-smtp-password SMTP_FROM=Pulse CRM # Frontend URL (for email links) FRONTEND_URL=https://crm.kronos-soulution.de