- Remove redeemId from successful redemption response - Remove redeemId from error response - Update swagger documentation to remove redeemId field - Update README examples to remove redeemId field - Clean up API response format for better simplicity
19 lines
353 B
Plaintext
19 lines
353 B
Plaintext
# Server Configuration
|
|
PORT=3000
|
|
NODE_ENV=development
|
|
|
|
# Security Configuration
|
|
ALLOW_REDEEM_DOMAINS=*
|
|
|
|
|
|
# Default Lightning Address (used when no address is provided in redeem requests)
|
|
DEFAULT_LIGHTNING_ADDRESS=admin@your-domain.com
|
|
|
|
# Rate Limiting (requests per minute)
|
|
RATE_LIMIT=30
|
|
|
|
# Logging
|
|
LOG_LEVEL=info
|
|
|
|
# CORS Configuration
|
|
ALLOWED_ORIGINS=* |