26 lines
823 B
Plaintext
26 lines
823 B
Plaintext
# OpenAI API key
|
|
OPENAI_KEY=your-openai-key-here
|
|
|
|
# Database credentials
|
|
DB_HOST=localhost
|
|
DB_USER=your-db-user
|
|
DB_PASSWORD=your-db-password
|
|
DB_NAME=your-db-name
|
|
|
|
# Admin credentials
|
|
ADMIN_USER=your-admin-username
|
|
ADMIN_PASSWORD=your-admin-password
|
|
|
|
# SMTP (Office365) settings for sending contact/booking emails
|
|
# Use the Office365 SMTP endpoint and a mailbox account that can send (e.g. christian@warme.dk)
|
|
SMTP_HOST=smtp.office365.com
|
|
SMTP_PORT=587
|
|
SMTP_USER=your-smtp-user@example.com
|
|
SMTP_PASS=your-smtp-password
|
|
|
|
# The recipient for booking messages (defaults to christian@warme.dk)
|
|
BOOKING_EMAIL=christian@warme.dk
|
|
SENDER_EMAIL=christian@warme.dk
|
|
|
|
# Notes: If your account uses MFA, create an app password for SMTP and use it in SMTP_PASS.
|
|
# Office365 settings: SMTP_HOST=smtp.office365.com, SMTP_PORT=587 (STARTTLS) |