19 lines
384 B
Plaintext
19 lines
384 B
Plaintext
# Server Configuration
|
|
PORT=3000
|
|
NODE_ENV=development
|
|
|
|
# Security Configuration
|
|
ALLOW_REDEEM_DOMAINS=*
|
|
API_SECRET=your-secret-key-here
|
|
|
|
# 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=* |