14 lines
325 B
Bash
14 lines
325 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
|