19 lines
323 B
Bash
19 lines
323 B
Bash
# Environment
|
|
NODE_ENV=production
|
|
|
|
# Server Configuration
|
|
PORT=3000
|
|
|
|
# Domain Configuration (CORS)
|
|
PRODUCTION_DOMAIN=https://sre.pawjob.us
|
|
|
|
# External API Configuration
|
|
EXTERNAL_API_URL=http://localhost:6000
|
|
|
|
# Logging Configuration
|
|
LOG_LEVEL=info
|
|
|
|
# Rate Limiting
|
|
RATE_LIMIT_WINDOW_MS=60000
|
|
RATE_LIMIT_MAX_REQUESTS=100
|