18 lines
420 B
Bash
18 lines
420 B
Bash
# Flask Configuration
|
|
SECRET_KEY=your-secret-key-here
|
|
|
|
# Email Configuration (for sending resume links)
|
|
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
|