15 lines
288 B
Bash
15 lines
288 B
Bash
# Server Port & Configuration
|
|
PORT=8080
|
|
WEB_DIR=public
|
|
BOOKED_DATES_FILE=booked_dates.json
|
|
|
|
# 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
|