14 lines
252 B
Bash
14 lines
252 B
Bash
# Server Port & Configuration
|
|
PORT=8080
|
|
WEB_DIR=public
|
|
|
|
# SMTP Configuration
|
|
SMTP_HOST=mail.example.com
|
|
SMTP_PORT=587
|
|
SMTP_USER=user@example.com
|
|
SMTP_PASS=secretpassword
|
|
|
|
# Email Addresses
|
|
TO_EMAIL=destination@example.com
|
|
FROM_EMAIL=sender@example.com
|