- Roboto Flex loaded from Google Fonts for compact UI text - Reduced decorative borders while retaining useful input and divider borders - Fixed blank journal detail pages - Password-protected journal publisher with four-hour signed sessions - New articles saved directly to posts.json - Prominent Spotify, Instagram, and Steam buttons on Contact - Desktop and mobile layouts visually verified - Production build and authorization tests passed
19 lines
625 B
Bash
19 lines
625 B
Bash
# Where contact-form messages should be delivered.
|
|
CONTACT_TO_EMAIL=alexwherlan@gmail.com
|
|
|
|
# SMTP connection used by POST /api/contact.
|
|
SMTP_HOST=smtp.example.com
|
|
SMTP_PORT=587
|
|
SMTP_USERNAME=your-smtp-username
|
|
SMTP_PASSWORD=your-smtp-password
|
|
SMTP_FROM_EMAIL=portfolio@example.com
|
|
SMTP_USE_TLS=true
|
|
SMTP_USE_SSL=false
|
|
|
|
# Comma-separated origins allowed to call the API during development.
|
|
FRONTEND_ORIGINS=http://localhost:5173
|
|
|
|
# Lightweight journal publisher authentication. Use long, unique values in production.
|
|
JOURNAL_ADMIN_PASSWORD=replace-with-a-strong-password
|
|
JOURNAL_TOKEN_SECRET=replace-with-a-long-random-secret
|