Files
application-form-7/.env.example
T

20 lines
557 B
Bash
Raw Normal View History

2025-12-27 16:34:31 +01:00
# Flask Configuration
SECRET_KEY=your-secret-key-here
2025-12-27 22:44:06 +01:00
# 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
2025-12-27 16:34:31 +01:00
MAIL_DEFAULT_SENDER=noreply@example.com
# Company Settings
COMPANY_NAME=Ihr Firmenname
2025-12-27 21:57:10 +01:00
# HR Notification Settings
HR_EMAIL=hr@example.com
APPLICATION_URL_BASE=http://localhost:5000