16 lines
372 B
Plaintext
16 lines
372 B
Plaintext
# Server Configuration
|
|
PORT=3001
|
|
NODE_ENV=development
|
|
|
|
# Email Configuration
|
|
SMTP_HOST=smtp.mail.me.com
|
|
SMTP_PORT=587
|
|
SMTP_USER=your-email@me.com
|
|
SMTP_PASS=your-app-specific-password
|
|
SMTP_FROM=your-email@me.com
|
|
SMTP_TO=your-email@me.com
|
|
|
|
# Security
|
|
CORS_ORIGIN=https://knck.pl
|
|
RATE_LIMIT_WINDOW_MS=900000 # 15 minutes
|
|
RATE_LIMIT_MAX_REQUESTS=5 # 5 requests per window |