Files
2025-12-27 22:44:06 +01:00

20 lines
557 B
Bash

# Flask Configuration
SECRET_KEY=your-secret-key-here
# Email Configuration (defaults to mailcatcher for development)
# For mailcatcher: use defaults (localhost:1025, no auth)
# For production: uncomment and configure real SMTP server
#MAIL_SERVER=smtp.gmail.com
#MAIL_PORT=587
#MAIL_USE_TLS=True
#MAIL_USERNAME=your-email@example.com
#MAIL_PASSWORD=your-app-password-here
MAIL_DEFAULT_SENDER=noreply@example.com
# Company Settings
COMPANY_NAME=Ihr Firmenname
# HR Notification Settings
HR_EMAIL=hr@example.com
APPLICATION_URL_BASE=http://localhost:5000