# Template — copy to .env (chmod 600, gitignored) and fill in real values. # Used by sms/config.py (Settings, env_prefix=voipms_). # voip.ms REST API credentials (portal login email + API password from API Security) VOIPMS_API_USERNAME=you@example.com VOIPMS_API_PASSWORD=your-api-password # SHA-256 hash of the accepted client API key (raw key is NOT stored here). # Generate: python3 -c "import secrets,hashlib; k=secrets.token_urlsafe(32); print('KEY:',k); print('HASH:',hashlib.sha256(k.encode()).hexdigest())" VOIPMS_SMS_API_KEY_HASH= # Optional overrides VOIPMS_DIALING_MODE=nanpa VOIPMS_DAILY_LIMIT=100